Archived topic
Filter
1 reply · Started by Andrew on March 3, 2022
Looking to remove the entry title from all pages, besides posts, without manually clicking the option for each page, can this code be tweaked?
add_action( 'after_setup_theme', 'tu_remove_all_titles' );
function tu_remove_all_titles() {
add_filter( 'generate_show_title', '__return_false' );
}
Hi there,
I would recommend creating a layout element:
https://docs.generatepress.com/article/layout-element-overview/#disable-element
The display rule would be Page > All Pages.
Let me know if this helps :)