2010-11-27 5 views

답변

3

page을 WordPress 포럼에서 확인하실 수 있습니다. 검색 양식에 숨겨진 양식 필드를 추가하고 WordPress가 생성하는 쿼리를 업데이트하기 위해 후크를 추가해야합니다.

편집 : 다음은 위에서 언급 한 포럼 게시물의 코드입니다. functions.php에서

<input type="hidden" name="post_type" value="page" /> 

:

function mySearchFilter($query) { 
    $post_type = $_GET['type']; 
    if (!$post_type) { 
     $post_type = 'any'; 
    } 
    if ($query->is_search) { 
     $query->set('post_type', $post_type); 
    }; 
    return $query; 
}; 

add_filter('pre_get_posts','mySearchFilter'); 
검색 양식에서