Reply To: How to remove/modify Post Navigation Folder at bottom of page

Home Forums Support How to remove/modify Post Navigation Folder at bottom of page Reply To: How to remove/modify Post Navigation Folder at bottom of page

Home Forums Support How to remove/modify Post Navigation Folder at bottom of page Reply To: How to remove/modify Post Navigation Folder at bottom of page

#206703
Tom
Lead Developer
Lead Developer

Hi there,

No need to do that, simply add this PHP:

add_filter( 'generate_category_post_navigation','generate_force_category_post_navigation' );
function generate_force_category_post_navigation()
{
    return true;
}

Using one of these options: https://generatepress.com/knowledgebase/adding-php-functions/