• Resolved chrischickenwire

    (@chrischickenwire)


    Hi there,

    Very quick question.

    On this page: http://www.rjt-online.com/blog/blog-archive

    …the link at the bottom says Older Posts and then there is an arrow.

    I would like to change the arrow to “>>”. Also want to do the same for Newer Posts (changing the arrow to “<<“).

    Any idea how to do this?

    Can’t see anything relating to the Older/Newer posts in index.php

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    look for something similar to this in loop.php:

    <div id="nav-below" class="navigation">
    <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
    <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
    </div><!-- #nav-below -->

    and change to this:

    <div id="nav-below" class="navigation">
    <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older posts', 'twentyten' ) ); ?></div>
    <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&raquo;</span>', 'twentyten' ) ); ?></div>
    </div><!-- #nav-below -->

    Thread Starter chrischickenwire

    (@chrischickenwire)

    Brilliant thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing the arrows after Older/Newer Posts’ is closed to new replies.