• Hi, I’m a newbie with this. love the WPFolio theme, but want to change the newer/older links on the category page to arrows. How do I do this… Also, how do I take the Edit this Entry text from the footer on this post? Any help would be appreciated. Thanks.

Viewing 1 replies (of 1 total)
  • To change the older/newer to arrows you need to edit the theme.

    1. Go to Appearance > Editor
    2. Select Main Index Template
    3. Find the code:
    <?php next_post_link('%link', 'next', TRUE, ''); ?>
    <?php previous_post_link('%link', 'previous', TRUE, ''); ?>

    and change it to:
    <?php previous_posts_link('←') ?> <?php next_post('%', '←', 'no'); ?> <?php previous_post('%', '→', 'no'); ?> <?php next_posts_link('→') ?>
    <!--<?php next_post_link('%link', 'next', TRUE, ''); ?>
    <?php previous_post_link('%link', 'previous', TRUE, ''); ?>-->

    (you’re keeping the old code in case you need to switch back or something gets screwed up)

    Remember, when you update WPFolio you’ll have to change this (unless we change it in the theme, which we might).

    The “edit this entry” text only appears when you are logged in. It’s for convenience. Visitors to your site don’t see it.

Viewing 1 replies (of 1 total)
  • The topic ‘WPFolio – problems changing newer/older on category page’ is closed to new replies.