[Resolved] Month on Archive Pages

Home Forums Support [Resolved] Month on Archive Pages

Home Forums Support Month on Archive Pages

  • This topic has 2 replies, 2 voices, and was last updated 6 years ago by Maria.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #534365
    Maria

    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/

    #534611
    Tom
    Lead Developer
    Lead Developer

    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;
    }
    #535241
    Maria

    Excellent!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.