我使用WordPress和bootstrap创建了自定义主题,除了singe.php中的上一个和下一个链接外,一切正常。
这是我的代码:
<?php get_header(); ?>
<article>
<div class="container single-project">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="row">
<div class=" col-md-4 col-lg-4 pull-right">
<header class="entry-header">
<h1 id="post-<?php the_ID(); ?>"><?php the_title();?></h1>
<hr>
</header><!-- .entry-header -->
</div>
<div class=" hidden-md hidden-lg"><hr></div>
<div class="col-md-4 col-lg-4"><?php the_content(); ?></div>
<?php previous_posts_link() ?>
<?php next_posts_link() ?>
</div> <!-- end of row -->
</div> <!-- end of container -->
<?php endwhile; endif; ?>
</article>
<?php get_footer(); ?>
提前致谢。
答案 0 :(得分:1)
你必须搬家
<?php previous_posts_link() ?>
<?php next_posts_link() ?>
之后
</article>
最好在某个div中,这样你就可以设置样式,比如
<div class="navi">
<?php previous_posts_link() ?>
<?php next_posts_link() ?>
</div>
答案 1 :(得分:0)
找到解决方案:
<?php previous_post('« « %', 'Previous Post', 'yes'); ?> |
<?php next_post('% » » ', 'Next Post', 'yes'); ?>
http://wpsites.net/web-design/previous-next-single-post-navigation-links-wordpress/