Dzonia Navigation Order - Previous Post, Next Post

Discussion in 'Dzonia WordPress Theme' started by mariahlb, Feb 11, 2013.

  1. mariahlb

    mariahlb New Member

    Joined:
    Aug 14, 2012
    Messages:
    1
    Likes Received:
    0
    I haven't been able to locate where to edit/modify the navigation order for previous post, next post, etc.

    1) For example, from this page, http://morerootsthanbranches.com/covis/about-us/ , where do I (can I) edit the navi links for "<-- PREVIOUS POST" and "NEXT POST -->"?

    2) And the navi links appear on some pages, but not others (it is here: http://morerootsthanbranches.com/covis/resources/contests/ but isn't here http://morerootsthanbranches.com/covis/about-us/honored-daughters/ )

    Kind Regards,
    Mariah
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Navigation shown in the theme have default functionality of WordPress, Therefore it is not possible to add link in it.

    2.For your second issue

    Go to template-fullwidth.php present in your theme directory and add 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 ', 'dzonia')); ?>
            </span> <span class="nav-next">
            <?php next_post_link('%link', __('Next Post <span class="meta-nav">&rarr;</span>', 'dzonia')); ?>
            </span> </nav>
    Sending image for reference

    [​IMG]
     

Share This Page