generate_entry_meta() remove the categories
if ( ! function_exists( 'generate_entry_meta' ) ) : | |
/** | |
* Prints HTML with meta information for the categories, tags. | |
* | |
* @since 1.2.5 | |
*/ | |
function generate_entry_meta() | |
{ | |
if ( 'post' == get_post_type() ) { | |
$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'generate' ) ); | |
if ( $tags_list ) { | |
printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', | |
_x( 'Tags', 'Used before tag names.', 'generate' ), | |
$tags_list | |
); | |
} | |
} | |
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { | |
echo '<span class="comments-link">'; | |
comments_popup_link( __( 'Leave a comment', 'generate' ), __( '1 Comment', 'generate' ), __( '% Comments', 'generate' ) ); | |
echo '</span>'; | |
} | |
} | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment