blog pagination at top and bottom of page

  • Posted in : Responsy WP
  • jamieboepple
    Participant

    Is there any way to add pagination (page 1, 2, 3) at the top of the blog? it’s currently at the bottom only, and viewers have to scroll all the way to the bottom to get to the next page.

    please let me know where I can add some code to do this.

    thank you, I appreciate all your help!

    Mehmet S.
    Keymaster

    – Go to Appearance > Editor > index.php,

    – Find the pagination code lines:

    echo '<div class="pagination-wrap">';
    	oxo_pagination( array() );
    echo '</div>';
    

    – Cut them,

    – Paste before the if ( have_posts() ) : line:

    – Finally:

    <?php
    	echo '<div class="pagination-wrap">';
    		oxo_pagination( array() );
    	echo '</div>';
    
    	if ( have_posts() ) :
    
    jamieboepple
    Participant

    thank you!!

Viewing 3 posts - 1 through 3 (of 3 total)

The forum ‘Responsy WP’ is closed to new topics and replies.