Hi,
Unfortunately the post pagination uses the wp_link_pages() function which only works on loop single.
You need a different approach fro pages or you could try to find plugin.
You can find more info about this here: http://codex.wordpress.org/Pagination
Thanks
Hi,
You can try to remove this condition from pagination function then check it on pages.
I have tested the tag on post/pages/ twenty fourteen theme, result: http://screencast.com/t/74o4v00hs
Thanks
Found a solution so far. đ
In page.php after <div class="td-page-text-content"><?php the_content();?></div>
use this
<?php wp_link_pages(array(
'before' => '<div class="page-nav page-nav-post">',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'nextpagelink' => ' ' . __td('Next') . '
',
'previouspagelink' => '
' . __td('Prev')
)); ?>
Now it’s look the same in posts and pages!


