Site logo

Archived topic

disable tag icon

3 replies · Started by Aaron on February 24, 2022

Viewing posts 1–4 of 4

Hi there,

Try this snippet:

add_filter( 'generate_inside_post_meta_item_output', function( $output, $item ) {
    if ( 'tags' === $item ) {
        $output = '';
    }

    return $output;
}, 50, 2 );

Thank you, this worked!

No problem :)

This archived topic is closed to new replies.