How to include: Next and Previous Links?

Discussion in 'GoldenEagle WordPress Theme' started by alenija, Jul 28, 2013.

Thread Status:
Not open for further replies.
  1. alenija

    alenija New Member

    Joined:
    Jul 27, 2013
    Messages:
    2
    Likes Received:
    0
    Hello,

    I purchased the GoldenEagle Theme and I'm super happy with it. The only thing I'm missing is the Next and Previous Links. I would love to display them right under the posts, between the grey author area and the comments.

    The website I would like to include it is: www.project-beautiful.de

    I hope it is possible and not too complicated, since I'm not quite good in editing :)

    Thank you so much for your help!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to single.php present in your theme directory and add the code given below

    Code:
    <nav id="nav-single"> <span class="nav-previous">
                                <?php previous_post_link('%link', __('<span class="meta-nav">&larr;</span> Previous Post ', 'goldeneagle')); ?>
                            </span> <span class="nav-next">
                                <?php next_post_link('%link', __('Next Post <span class="meta-nav">&rarr;</span>', 'goldeneagle')); ?>
                            </span> </nav>

    Sending image for reference

    2013-07-29_1245.png


    This will solve your issue.
     
  3. alenija

    alenija New Member

    Joined:
    Jul 27, 2013
    Messages:
    2
    Likes Received:
    0
    Thank you so much!
    Great support! I love it!
     
Thread Status:
Not open for further replies.

Share This Page