我试图在中只加载两种类型的帖子(“新闻”和“评论”)home page
使用pre_get_posts
:
// Load Home Page Posts( reviews and news )
function search_home_posts( $query ) {
if( $query->is_home() && $query->is_main_query() && !is_admin() ) {
$query->set( \'post_type\', array( \'reviews\', \'news\' ) );
}
}
add_action( \'pre_get_posts\', \'search_home_posts\' );
但它似乎什么也没做,因为所有的帖子类型和页面都显示在
home page
. 知道发生了什么吗?