Thread Starter
vaneo
(@vaneo)
@johnclause,
Thank you very much, you solved my problem!
New test version I have downloaded from GitHub works! 🙂
Thread Starter
vaneo
(@vaneo)
@gunu,
Hi, I have just tried it with clean Twenty Thirteen theme without any adjustments and I can still reproduce the issue.
Thread Starter
vaneo
(@vaneo)
Hi John, thank you for your answer. Just put next_posts_link and previous_posts_link calls in your index.php template, for example, here is mine:
<div id="primary">
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php next_posts_link('Older Entries') ?>
<?php previous_posts_link('Newer Entries') ?>
<?php endif; ?>
</div><!-- #primary -->
Regards,