Team
Price
Portfolio
Contact
Cases
Plugins
Define what post types to search
function wpm_search_filter( $query ) { if ( $query->is_search && ! is_admin() ) { $query->set( 'post_type', array( 'case' ) ); } return $query; } add_filter( 'pre_get_posts', 'wpm_search_filter' );
1
2
3
4
5
6
7
8
function
wpm_search_filter
(
$query
)
{
if
(
$query
->
is_search
&&
!
is_admin
(
)
)
{
$query
->
set
(
'post_type'
,
array
(
'case'
)
)
;
}
return
$query
;
}
add_filter
(
'pre_get_posts'
,
'wpm_search_filter'
)
;
Custom Post Type
Search
06 Feb 2017