【发布时间】:2020-01-29 21:41:45
【问题描述】:
我是 wordpress 的最后一名大三学生,想用 wp_query 创建**pagination**,但我只有 2 页,但我有 8 个帖子,每页显示 2 个
--我在不同的网站上搜索了很多,但没有找到答案
<?php //GET POSTS
$paged = get_query_var( 'paged' );
$arr=array(
'author' =>the_author_meta('id'),
'posts_per_page' => 2,
'paged' =>$paged,
);
$special_query= new WP_Query($arr);//SPECIAL QUERY
if($special_query->have_posts()){//check if there is posts or no
while($special_query->have_posts()){
$special_query-> the_post();
/*content*/
?>
【问题讨论】:
标签: php wordpress pagination