[Resolved] Duplicating Post Navigation Links

Home Forums Support [Resolved] Duplicating Post Navigation Links

Home Forums Support Duplicating Post Navigation Links

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1616315
    Ian

    Is there a way to add a second set of post navigation links on the single post page? I was wanting to have the second set show up below the comments in addition to the ones that show up at the end of the post.

    #1616362
    Ying
    Staff
    Customer Support

    Hi Ian,

    We can achieve this by using a Hook element.
    https://docs.generatepress.com/article/hooks-element-overview/

    Choose generate_after_main_content as Hook.

    Add this code in content field, make sure you check the Execute PHP box.

    <?php
    if ( function_exists( 'generate_content_nav' ) ) {
        generate_content_nav( 'nav-below' );
    }
    ?>

    Let me know 🙂

    #1616366
    Ian

    Worked perfectly – thanks very much!

    #1616401
    Ying
    Staff
    Customer Support

    No problem!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.