你能帮我解决下WordPress的一个问题吗?谢谢
http://zhidao.baidu.com/question/488750363982569652.html?quesup2&oldq=1...
http://zhidao.baidu.com/question/488750363982569652.html?quesup2&oldq=1
展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
2个回答
展开全部
原因:当后台设置-阅读里的文章数大于post_per_page 时,其值是无效的。
方法1 :把'posts_pre_page' => 1改为
'showposts' => 1
方法2:用wp_query() 函数来代替 query_posts()
方法3:在function.php定义特殊分类显示
function custom_posts_per_page($query){
if( is_category('wordpress-themes') && $query->is_main_query() ) {
$query->set('posts_per_page', 20);
}
}
add_action('pre_get_posts', 'custom_posts_per_page');
方法1 :把'posts_pre_page' => 1改为
'showposts' => 1
方法2:用wp_query() 函数来代替 query_posts()
方法3:在function.php定义特殊分类显示
function custom_posts_per_page($query){
if( is_category('wordpress-themes') && $query->is_main_query() ) {
$query->set('posts_per_page', 20);
}
}
add_action('pre_get_posts', 'custom_posts_per_page');
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询