在Single.php上自定义帖子类型分页?

时间:2012-08-30 作者:user4630

同样的老问题,甚至不确定它是否可能。

在单个上分页。php自定义帖子类型,是否可能?

这很好,直到我将永久链接改为/%postname%/然后单击上一个/下一个链接时,它只会重新加载相同的页面,

<?php 
  $temp = $wp_query; 
  $wp_query = null; 
  $wp_query = new WP_Query(); 
  $wp_query->query(\'showposts=1&orderby&menu_order&post_type=press-round\'.\'&paged=\'.$paged); 

  while ($wp_query->have_posts()) : $wp_query->the_post(); 
?>


  <?php the_title(); ?>

<?php endwhile; ?>

<nav>
<?php previous_posts_link(\'&laquo; Newer\') ?>
<?php next_posts_link(\'Older &raquo;\') ?>
</nav>

<?php $wp_query = null;  $wp_query = $temp;?>
我刷新了permalinks,删除了htaccess,确保页面的名称与您通常使用的名称不同。

难道不可能在一个自定义的帖子类型页面上启用永久链接进行分页吗?

1 个回复
最合适的回答,由SO网友:sanchothefat 整理而成

问题是你正在使用next_posts_link() 等注意复数形式“posts”。

要链接到您需要使用的上一篇和下一篇文章next_post_link()previous_post_link().

基本上将函数名中的“posts”改为“post”。

结束

相关推荐

Comment Pagination

我希望有人能帮助我的评论分页。我有分页工作和链接指向下一页等,但当点击页面只是刷新。这是我目前的代码,希望有人能帮助我。$pid = $post->ID; $comment_query = \"SELECT * FROM `wp_comments` WHERE comment_post_ID = \".$pid. \" AND comment_approved = \'1\'\"; $comments_array = $wpdb->get_results($comment