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

    Hello,

    I’d like to change the “Tag Archive for: TAG” to “Posts about TAG”

    How do I do that?

    #1403146

    This comes to child-theme functions.php:

    function custom_tag_label_names( $label_name ){
      $label_name = __( 'XYZ:' ) . ' <span>' . single_tag_title( '', false ) . '</span>';
      return $label_name;
    }
    add_filter( 'avf_tag_label_names', 'custom_tag_label_names' );
    #1403148

    Works like a charm – thank you!

    #1403154

    Hi abmich,

    I’m glad that @Guenni007 could help you :)
    Thanks for using Enfold and have a great day!


    @Guenni007
    thanks for helping out :)

    Best regards,
    Nikko

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change “Tag Archive for” in title’ is closed to new replies.