有更好的方法,但如果您想定制搜索结果,有一种简单的方法可以实现这一点,那就是编辑搜索。php模板,并将WP\\U查询设置为自定义查询:
<?php
$args = array(
\'s\' => get_search_query(),
\'post_type\' => array(\'page\'),
);
$search_query = new WP_Query($args);
if ( have_posts() ) :
while ( $search_query->have_posts() ) : $search_query->the_post();
// do stuff here
endwhile;
wp_reset_query();
endif;
?>