can you tell me for make pagination like just
“Next” –>on homepage
and if click “Next” (if many pages) and “Prev” for back to the before page
for detail i mean :
http://1.bp.blogspot.com/-X5SM0HVGBCA/VD4WkFjK2oI/AAAAAAAAAnI/i8xLeO1Tlpc/s1600/just%2Bnext%2Band%2Bprev.jpg
Hi,
You can use this functions: http://codex.wordpress.org/Function_Reference/next_posts_link and add them using an div tag on the template you use on your homepage and replace this: http://screencast.com/t/7DlGd290CLB
Thanks
Hi,
I have already went over it again here: https://forum.tagdiv.com/topic/please-make-option-classic-pagination-typle-older-post/
Add this code for the pagination and replace this: http://screencast.com/t/7DlGd290CLB
?><div class="newer_entries">
<?php previous_posts_link( '« Newer Entries' ) ?>
</div>
<div class="older_entries">
<?php next_posts_link( 'Older Entries »', 0 ); ?>
</div><?php
Like this: http://screencast.com/t/YBtf49YEhnc
Then use this css: http://screencast.com/t/YZcKyJQY
Thanks
