Site logo

Archived topic

Removing Category Description on Page 2

6 replies · Started by Rachel on March 18, 2020

Viewing posts 1–7 of 7

Hi,

I would like the Category Description to only show on page 1 of the category archive, and not on pages 2 onwards.
Is there a setting in GP that will allow me to control this?

Thanks,
Rachel

Hi there,

you can add this PHP snippet:

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

Hi David, where do I add the snippet? Is it a hook in elements? If so, which type of hook is it?
Thanks
Rachel

Ok thanks, will do.

Works great, thanks.

Glad to be of help

This archived topic is closed to new replies.