名言簿丨mottobook
相信文字的力量!名人名言,经典语录,深度好文,哲理故事,寓言,格言,箴言,座右铭精选,文字的光辉,犹如黑夜的明星,海上的灯塔,指引前行的方向,在潜移默化中打开格局,提升自我,成就人生!

wordpress首页、搜索页、分类页显示文章数量自定义

function custom_posts_per_page($query){
 

if(is_home()){

$query->set('posts_per_page',8);//首页每页显示8篇文章

}

if(is_search()){

$query->set('posts_per_page',-1);//搜索页显示所有匹配的文章,不分页

}

if(is_archive()){

$query->set('posts_per_page',25);//archive每页显示25篇文章

}//endif

}//function

 

//this adds the function above to the 'pre_get_posts' action

add_action('pre_get_posts','custom_posts_per_page');
Scroll Up