Archived topic
How To Turn Off a Category as Page Header
3 replies · Started by John on May 13, 2022
Viewing posts 1–4 of 4
Hi!
How do I turn off a category as a page header?
In this example, I'd like to turn off '1-Origami Tutorials' as a page header.
The category 'Origami tutorials' appears as a page header in the right column.
Thank you!
John
Hi there,
Give this PHP snippet a shot:
add_action( 'after_setup_theme', function() {
remove_action( 'generate_archive_title', 'generate_archive_title' );
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know if this helps :)
Thank you, Leo!
That works perfectly.
John
No problem :)
This archived topic is closed to new replies.