/* ---------------------------------------------- */
/* Setting Post Limits on the HomePage */
/* ---------------------------------------------- */
if ( ! function_exists( \'the_post_limit\' ) ) {
if ( true == get_theme_mod( \'the_post_limit\', true ) ) {
function the_post_limit( $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\', 8 );
return;
}
}
add_action( \'pre_get_posts\', \'the_post_limit\', 1 );
}
}
上面的代码位于主题的函数中。php。这里的目的是限制主页上的帖子数量。
这里的当前数字是数字“8”。
我们是否可以直接从设置中生成数字?我是说不管我们放在那里的数字是多少。
最合适的回答,由SO网友:maverick 整理而成
我只是稍微修改了你的代码。看看这是否有效
if ( ! function_exists( \'the_post_limit\' ) ) {
if ( true == get_theme_mod( \'the_post_limit\', true ) ) {
function the_post_limit( $query ) {
if ( is_admin() || ! $query->is_main_query() )
return;
if ( is_home() ) {
// Display only 1 post for the original blog archive
$get_default_posts_per_page = get_option( \'posts_per_page\' );
$query->set( \'posts_per_page\', $get_default_posts_per_page );
return;
}
}
add_action( \'pre_get_posts\', \'the_post_limit\', 1 );
}
}