Hello,
On my blog (dezineweblog.com) I was playing with the categories only and trying to make more sub-categories under each main category but when I didn't like it I reverted everything back to normal or as it was before.
But I just realized that on the homepage the page navigation options are gone. If you open homepage and go to bottom you don't see any option to go to previous posts but if you open this page
http://www.dezineweblog.com/category/design/ or other categories pages you will see at the bottom the page navigator is present through which you can browse more pages.
I even checked the home.php file and it has written this
HTML Code:
<div id="archive-posts">
<?php arras_render_posts(null, arras_get_option('archive_display')) ?>
<?php if(function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
<div class="navigation clearfix">
<div class="floatleft"><?php next_posts_link( __('Older Entries', 'arras') ) ?></div>
<div class="floatright"><?php previous_posts_link( __('Newer Entries', 'arras') ) ?></div>
</div>
It means the plugin option is written on the homepage file but why it is not loading?
Can anyone please help?