Site logo

Archived topic

Month on Archive Pages

2 replies · Started by Maria on March 28, 2018

Viewing posts 1–3 of 3

Hi there,

Give this a shot:

add_filter( 'get_the_archive_title', 'tu_remove_month_archive_title' );
function tu_remove_month_archive_title( $title ) {
    if ( is_month() ) {
        $title = get_the_date( 'F Y' );
    }

    return $title;
}

Excellent!

This archived topic is closed to new replies.