주요 PHP boolean expression

워드프레스 공통

포스트 타입

 

Easy Digital Downloads

다운로드 카테고리

  • 특정 다운로드 카테고리에서만 보이기
    //Content visibility : show_this_module('download_category' , 'test' )
    function show_this_module($taxonomy , $slug ){
           if( has_term( $slug, $taxonomy ) ) {
                  return true;
           }
           return false;
    
    }
  • 특정 다운로드 카테고리에서 숨기기
    //Content visibility  : hide_this_module('download_category' , 'test' )
    function hide_this_module($taxonomy , $slug ){
           if( has_term( $slug, $taxonomy ) ) {
                  return false;
           }
           return true;
    
    }