*/ if ( ! function_exists( 'blogwp_post_tags' ) ) : /** * Prints HTML with meta information for the tags. */ function blogwp_post_tags() { if ( 'post' == get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'blogwp' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '', $tags_list ); // WPCS: XSS OK. } } } endif; if ( ! function_exists( 'blogwp_style_9_cats' ) ) : function blogwp_style_9_cats() { if ( 'post' == get_post_type() ) { /* translators: used between list items, there is a space */ $categories_list = get_the_category_list( esc_html__( ' ', 'blogwp' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '