• Hi,

    I used this code to remove (hide) all content in the meta after the content.
    But it also hides categories and tags.

    I want just remove only the prev + next posts.

    
    add_action( 'wp', function() {
    	remove_action('generate_after_entry_content', 'generate_footer_meta');
    });
    

    Do you have a solution?

Viewing 1 replies (of 1 total)
  • Hi there,

    try this snippet:

    add_filter( 'generate_footer_entry_meta_items', function( $items ) {
        return array_diff( $items, array( 'post-navigation' ) );
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Remove prev next posts’ is closed to new replies.