Manually Install on my Theme
-
I’m using Coraline theme and on the index.php, it’s calling for loop.php and the code for navigation is this one below
<?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'coraline' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'coraline' ) ); ?></div> </div><!-- #nav-below --> <?php endif; ?>
How do I edit it for pagebar? What do I have to change? Thanks in advance!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Manually Install on my Theme’ is closed to new replies.