Site logo

Archived topic

How to display category title and description on the root page only?

3 replies · Started by vincenteccl on April 7, 2023

Viewing posts 1–4 of 4

Hi! I want to display the category page title and description ONLY on the first page of the archive, but not paginated pages 2,3,4 etc.
Right now, the archive title and description are on every page.
How to change that?
Thanks.

Hi there,

try adding this PHP Snippet to your site:

add_action( 'wp', function() {
    if ( is_paged() ) {
        remove_action( 'generate_after_archive_title', 'generate_do_archive_description' );
    }
} );

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

Thanks. It works!!

Glad to hear that!

This archived topic is closed to new replies.