WP-PageNavi with Comicpress
-
I’ve been trying to figure out how to relocate, customize or eliminate the text links “< Prev” and “Next >” that show up at the top of my blog with my WordPress theme, Comicpress. I noticed a doc called, “wp-pagenavi.php” in my Comicpress theme directory and learned about this plugin from there, so it seems that the author of the theme used the plugin in some way. I went ahead and installed the WP-PageNavi plugin, hoping it would give me more control over the pagination links. But I have not been able to get my theme to utilize the plugin, yet. I found the following code in the pagination.php doc:
<div id="pagenav"> <div class="pagenav-right"><?php previous_posts_link(__( 'Newer Entries ↑', 'comicpress' )) ?></div> <div class="pagenav-left"><?php next_posts_link(__( '↓ Previous Entries', 'comicpress' )) ?></div> <div class="clear"></div> </div>
But although I replaced the middle two lines with
<?php wp_pagenavi(); ?>
I still have not been able to effect the text navigation. Any help would be very appreciated.
- The topic ‘WP-PageNavi with Comicpress’ is closed to new replies.