Site logo

Archived topic

Hide Page Title on Category Archive Page

5 replies · Started by mavrocreative on October 30, 2020

Viewing posts 1–6 of 6

Hi,

I would like to hide the Page Title on Category Archive Pages.

I've tried using Elements to Disable Content Title and then I select Post Category Archives, All Locations for the Display Rules but the page title still displays.

Any suggestions?

Many thanks!

Donna

Ahh you are referring to the archive title.

Try this PHP instead:

add_action( 'wp', 'lh_remove_archive_title' );
function lh_remove_archive_title() {
        remove_action( 'generate_archive_title', 'generate_archive_title' );
}

Leo

Brilliant! That worked! Many thanks!

Donna

No problem :)

This archived topic is closed to new replies.