[Resolved] Delete the “Archive:” before the archives.

Home Forums Support [Resolved] Delete the “Archive:” before the archives.

Home Forums Support Delete the “Archive:” before the archives.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2374931
    Giannis

    Long story short, I only wanna delete the “Archive:” text before every archive.

    #2375135
    David
    Staff
    Customer Support

    Hi there,

    GP, uses the get_the_archive_title filter which you can see here:

    https://developer.wordpress.org/reference/functions/get_the_archive_title/

    And you can use it like so in this PHP Snippet::

    
    add_filter( 'get_the_archive_title', function ($title) {
        if  (is_post_type_archive()) {
            $title = post_type_archive_title( '', false );
        }
        return $title;
    });
    #2375211
    Giannis

    David is a good man, ladies & gentlemen.

    #2375356
    David
    Staff
    Customer Support

    Glad to be of help!!

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