使用pre_get_posts
钩子以修改$query
并在搜索中包含自定义帖子类型。
将以下内容添加到主题functions.php
文件
function modify_query( $query ) {
if ( is_home() ) {
$query->set( \'post_type\', array( \'post\', \'articles\', \'film_descriptions\', \'book_descriptions\', \'characters\' );
}
}
add_action( \'pre_get_posts\', \'modify_query\', 10, 1 );