Site logo

Archived topic

Remove commas between tags (in post)

2 replies · Started by sipahi on December 17, 2019

Viewing posts 1–3 of 3

Hello,

1- I am styling in post tags. I can't find where GP is outputting tags and edit that function. I am lost :(

2- is there a way to get rid of tag icon (in the beginning of tags list) with 1 click?

can you please share proper codes to tweak those 2 with me.

Sorry guys

The code Tom provided in a topic solved the issue.

add_filter( 'generate_tag_list_output', function( $output ) {
    $tags_list = get_the_tag_list( '', '' );

    return sprintf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', // WPCS: XSS ok, sanitization ok.
        esc_html_x( 'Tags', 'Used before tag names.', 'generatepress' ),
        $tags_list
    );
} );

Glad you've figured out :)

This archived topic is closed to new replies.