如果要限制筛选器this answer (将该功能添加到插件或主题的functions.php
) 仅针对一个查询,完成后删除筛选器:
add_filter( \'posts_search\', \'__search_by_title_only\', 500, 2 );
$query = new WP_Query(
array(
\'s\' => \'mykeyword myotherkeyword\',
\'cat\' => array( 22, 32 ),
\'orders\' => \'DESC\',
\'showposts\' => 6
)
);
remove_filter( \'posts_search\', \'__search_by_title_only\', 500 );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) :
$query->the_post();
the_title( \'<p>\', \'</p>\' );
endwhile;
wp_reset_postdata();
endif;