• At the bottom of every post is a pair of links to the previous post and the next post.

    How to disable this navigation feature?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there,

    try adding this PHP Snippet to your site:

    add_action( 'wp', function() {
        if ( is_single() ) {
            add_filter( 'generate_show_post_navigation', '__return_false' );
        }
    } );

    This doc explains how to add PHP:

    https://docs.generatepress.com/article/adding-php/

    Thread Starter Prof Parks

    (@prof-parks)

    Hey! Nice to see you.

    I got an error message:

    Don't Panic
    The code snippet you are trying to save produced a fatal error on line 1:
    
    syntax error, unexpected '&'
    The previous version of the snippet is unchanged, and the rest of this site should be functioning normally as before.
    
    Please use the back button in your browser to return to the previous page and try to fix the code error. If you prefer, you can close this page and discard the changes you just made. No changes will be made to this site.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable Previous/Next links at bottom of posts’ is closed to new replies.