Roy
(@gangleri)
You don’t need a plugin to do that:
codex.ww.wp.xz.cn/Next_and_Previous_Links
but where can i put the code
it is for this page http://www.ajaxupdate.nl/video/
after 5 videos i will set the next previous
Roy
(@gangleri)
At the bottom of your index.php and under “settings”->”reading” set index on 5 posts.
This is from my theme:
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Previous Entries')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Next Entries »')) ?></div>
</div>
It comes after the calling of comments (<?php comments_popup_link(__('Comment'), __('1 Comment'), __('% Comments')); ?> after the closing </div>s of course). Just have a look at where it is in the index.php of the default theme.