我想说,你现在这样做完全没问题,就是这样
function my_the_posts($posts, $query = false) {
if( is_search() ){
// do your thing here
}
return $posts;
}
add_filter( \'the_posts\', \'my_the_posts\' );
不要担心页脚中的这些摘录,即使它们可能是搜索页面的一部分(很明显,页脚将是搜索页面的一部分),它们是另一个查询的一部分,因此不会传递
is_search()
测验