Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #330228

    Hi!
    This is working fine to remove “Category Archive for”

    add_filter(‘avf_which_archive_output’,’avf_change_which_archive’, 10, 3);
    function avf_change_which_archive($output)
    {
    if(is_category())
    {
    $output = __(”,’avia_framework’).’ ‘.single_cat_title(”,false);
    }

    return $output;
    }

    But how do I get this also to remove ” Tag Archive for” ?

    Thanks for your help
    Peter

    • This topic was modified 10 years, 1 month ago by pegasso4444.
    #330244

    UPDATE:

    Sorry for asking. I was able to find the solution…
    Cheers
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How to remove "Tag Archive for:"’ is closed to new replies.