我不知道为什么,但在我从函数中删除了以下问题代码后,问题就解决了。php文件
// Show posts of \'post\', and \'news\' post types on archive page
add_action( \'pre_get_posts\', \'add_my_post_types_to_query\' );
function add_my_post_types_to_query( $query ) {
if ( is_archive() && $query->is_main_query() )
$query->set( \'post_type\', array( \'post\', \'news\' ) );
return $query;
}
https://wordpress.stackexchange.com/a/136115/94280