Site logo

Archived topic

Filter

1 reply · Started by Andrew on March 3, 2022

Viewing posts 1–2 of 2

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' );
}

This archived topic is closed to new replies.