Archived topic
Remove description from category page on blog
3 replies · Started by Kate on March 16, 2022
Viewing posts 1–4 of 4
Hi
How do I remove the description from a category page from showing on the blog? e.g. here https://ethicalescapes.org/category/responsible-travel-issues
Also the header too really.
Thanks
Hi there,
you can add this PHP Snippet:
add_action( 'wp', function() {
remove_action( 'generate_after_archive_title', 'generate_do_archive_description' );
} );
This article explains how to add the PHP:
Perfect
Glad to hear that!
This archived topic is closed to new replies.