Archived topic
Month on Archive Pages
2 replies · Started by Maria on March 28, 2018
Viewing posts 1–3 of 3
How would I remove "Month: " on Archive Page Titles? Currently, it reads "Month: November 2017". I just want it to read "November 2017", "October 2017", etc. https://stallion.manifestationofhisglory.com/2017/11/
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.