Possible Duplicate:
Pagination not working with custom loop
我正在为登录的当前用户创建一个自定义页面,以查看他们的帖子。我想将显示的帖子数量限制为5篇,但无法显示分页。
这就是我正在使用的:
<?php if ( is_user_logged_in() ):
global $current_user;
get_currentuserinfo();
$author_query = array(\'posts_per_page\' => \'5\',\'author\' => $current_user->ID);
$author_posts = new WP_Query($author_query);
while($author_posts->have_posts()) : $author_posts->the_post();
?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php
endwhile;
else :
echo "not logged in";
endif;
?>
我一点也不专业,只是喜欢创建自己的网站,所以我犯了一个非常愚蠢的错误。请对我温柔一点?谢谢你的帮助!