我确实改变了posts_per_page
查询到-1
.我确实设置了>阅读>更改的博客页面,最多显示99个,但没有更改。
我还尝试在帖子中添加此代码。php,但没有更改。
function hwl_home_pagesize( $query ) {
if ( is_admin() || ! $query->is_main_query() )
return;
if ( is_home() ) {
// Display only 1 post for the original blog archive
$query->set( \'posts_per_page\', 1 );
return;
}
if ( is_post_type_archive( \'movie\' ) ) {
// Display 50 posts for a custom post type called \'movie\'
$query->set( \'posts_per_page\', 50 );
return;
}
}
add_action( \'pre_get_posts\', \'hwl_home_pagesize\', 1 );