Wordpress Tag issue on tag archive page

2019-08-18 11:48发布

问题:

From category.php Page I click on tag and it goes to tag.php page.

The following code returns the tag on archive/tag page.

But i adds a word "Tag:" before it.

Tag: tagname

How can I remove that "Tag:" and show only tag name ?

回答1:

you could try this:

add_filter( 'get_the_archive_title', function ($title) {

    if( is_tag() ) {

        $title = single_tag_title( '', false );

    }

    return $title;

});

You should paste it in your theme functions.php file.

Cheers!