Add this to your Child Theme functions.php file and modify its content to what you want:
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function education_hub_entry_footer() {
// Hide category and tag text for pages.
if ( 'post' === get_post_type() ) {
/* Translators: used between list items, there is a space after the comma. */
$categories_list = get_the_category_list( esc_html__( ', ', 'education-hub' ) );
if ( $categories_list && education_hub_categorized_blog() ) {
printf( '<span class="cat-links">%1$s</span>', $categories_list ); // WPCS: XSS OK.
}
/* Translators: used between list items, there is a space after the comma. */
$tags_list = get_the_tag_list( '', esc_html__( ', ', 'education-hub' ) );
if ( $tags_list ) {
printf( '<span class="tags-links">%1$s</span>', $tags_list ); // WPCS: XSS OK.
}
}
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '<span class="comments-link">';
comments_popup_link( esc_html__( 'Leave a comment', 'education-hub' ), esc_html__( '1 Comment', 'education-hub' ), esc_html__( '% Comments', 'education-hub' ) );
echo '</span>';
}
edit_post_link( esc_html__( 'Edit', 'education-hub' ), '<span class="edit-link">', '</span>' );
}