Okay
  Public Ticket #1758885
Post Navigation Newer Post Link on Most Recent Post
Closed

Comments

  •  1
    theimaginative started the conversation

    Is there a way to have the newer post link (taking you to the oldest post) not show up on the most recent blog post? I would rather not have such a direct link on my most recent post to my oldest post & most themes I have seen usually have just one link on the most recent post.

  •  1,559
    Laborator replied

    Hi there,

    Are you talking about the navigation arrows which are at the bottom of each blog post:


    (view large version)


    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  1
    theimaginative replied

    Yes, and on the most recent post, it offers a link to a "newer" post, which is actually the oldest post. Most themes I have seen just have a single link for "older posts" on the more recent post.

    Thoughts? Thanks.

  •  1,559
    Laborator replied

    Hi theimaginative,

    Can you please include a link from the example so we will have a better idea of what you want to implement and see if that can be done in Kalium.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  1
    theimaginative replied

    Most blogs are that way including all of the standard WordPress releases - here is a link to the most recent release -2017. This is the most recent blog page and it includes only a link to previous posts, but later posts include links to both previous and newer posts.

    https://2017.wordpress.net/2016/10/17/looking-for-local-artists/

  • [deleted] replied

    Hi,

    I have added the following code in functions so now the post navigation loop is disabled:

    // Disable post navigation loop
    add_action( 'kalium_blog_single_post_prev_next_navigation', function( $args ) {
    $args['loop'] = false;
    return $args;
    } );


    (view large image)

    Does this works for you?