[Resolved] changing the categories style

Home Forums Support [Resolved] changing the categories style

Home Forums Support changing the categories style

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #495449
    Halil

    that didnt work either, pls see pic.

    View post on imgur.com

    #495802
    Tom
    Lead Developer
    Lead Developer

    This is the best way to removes commas:

    add_filter( 'generate_category_list_output', 'tu_remove_category_commas' );
    function tu_remove_category_commas() {
    	$categories_list = get_the_category_list( ' ' );
    	return sprintf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', // WPCS: XSS ok, sanitization ok.
    		esc_html_x( 'Categories', 'Used before category names.', 'generatepress' ),
    		$categories_list
    	);
    }
    #495874
    Halil

    awesome. thanks.

    #496346
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 16 through 19 (of 19 total)
  • You must be logged in to reply to this topic.