Now, in your child theme’s functions.php file, add following code:
/**
* Prints HTML with meta information for the current post-date/time and author.
*
* @since Catch Responsive 1.0
*/
function catchresponsive_entry_meta() {
echo '<p class="entry-meta">';
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( 'c' ) ),
esc_html( get_the_modified_date() )
);
printf( '<span class="posted-on">%1$s<a href="%2$s" rel="bookmark">%3$s</a></span>',
sprintf( __( '<span class="screen-reader-text">Posted on</span>', 'catch-responsive-pro' ) ),
esc_url( get_permalink() ),
$time_string
);
if ( is_singular() || is_multi_author() ) {
printf( '<span class="byline"><span class="author vcard">%1$s<a class="url fn n" href="%2$s">%3$s</a></span></span>',
sprintf( __( '<span class="screen-reader-text">Author</span>', 'catch-responsive-pro' ) ),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
esc_html( get_the_author() )
);
}
$categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'catch-responsive-pro' ) );
if ( $categories_list && catchresponsive_categorized_blog() ) {
printf( '<span class="cat-links">%1$s%2$s</span>',
sprintf( _x( '<span class="screen-reader-text">Categories</span>', 'Used before category names.', 'catch-responsive-pro' ) ),
$categories_list
);
}
if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) {
echo '<span class="comments-link">';
comments_popup_link( esc_html__( 'Leave a comment', 'catch-responsive-pro' ), esc_html__( '1 Comment', 'catch-responsive-pro' ), esc_html__( '% Comments', 'catch-responsive-pro' ) );
echo '</span>';
}
edit_post_link( esc_html__( 'Edit', 'catch-responsive-pro' ), '<span class="edit-link">', '</span>' );
echo '</p><!-- .entry-meta -->';
}
This should have desired effect. Let me know how it goes.
Regards,
Pratik