Archived topic
Category name
5 replies · Started by bradborland on May 23, 2018
How do I get rid of the word "Articles" at the top of my category page:
Hi there,
Try adding this function:
add_action( 'after_setup_theme', 'tu_remove_archive_title' );
function tu_remove_archive_title() {
remove_action( 'generate_archive_title', 'generate_archive_title' );
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know :)
Am I to add the Code Snippets plugin? This is reference to the link that was shared.
Hi Brad,
Yes, that is the easiest way to add the snippets for reference its this:
Thanks! It worked!
Thanks for all your help the last few days.
Great to hear that. And you're very welcome!