Я создал собственную тему с WordPress и начальной загрузкой, и все отлично работает, кроме предыдущей и следующей ссылки в 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(); ?>
Заранее спасибо.
Вы должны двигаться
<?php previous_posts_link() ?>
<?php next_posts_link() ?>
после
</article>
желательно внутри некоторого div, чтобы вы могли его стилизовать, как
<div class="navi">
<?php previous_posts_link() ?>
<?php next_posts_link() ?>
</div>
Найденное решение:
<?php previous_post('« « %', 'Previous Post', 'yes'); ?> |
<?php next_post('% » » ', 'Next Post', 'yes'); ?>
http://wpsites.net/web-design/previous-next-single-post-navigation-links-wordpress/