Site logo

Archived topic

Disable H1Heading Title for Custom Taxonomy Archive Pages

1 reply · Started by Thomas on January 7, 2018

Viewing posts 1–2 of 2

I'm trying to restyle my archive page however i need to disable the default heading title. Is this possible without creating a child template?

Hi there,

You can add this function:

add_action( 'after_setup_theme', 'tu_remove_archive_title' );
function tu_remove_archive_title() {
    remove_action( 'generate_archive_title', 'generate_archive_title' );
}

Hope this helps :)

This archived topic is closed to new replies.