%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $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() ) ); $posted_on = sprintf( /* translators: %s: post date. */ esc_html_x( 'Posted on %s', 'post date', 'starter-blog' ), '' . $time_string . '' ); $byline = sprintf( /* translators: %s: post author. */ esc_html_x( 'by %s', 'post author', 'starter-blog' ), '' . esc_html( get_the_author() ) . '' ); echo '' . $posted_on . ' ' . $byline . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'starterblog_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function starterblog_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 */ $tags_list = get_the_tag_list( '', ' ' ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '', $tags_list ); // WPCS: XSS OK. } } } endif; if ( ! function_exists( 'starterblog_comment' ) ) : /** * Template for comments and pingbacks. * * To override this walker in a child theme without modifying the comments template * simply create your own starterblog_comment(), and that function will be used instead. * * Used as a callback by wp_list_comments() for displaying the comments. * * @param object $comment Comment item. * @param array $args Comment settings. * @param int $depth Current depth. * * @return void */ function starterblog_comment( $comment, $args, $depth ) { switch ( $comment->comment_type ) { case 'pingback': case 'trackback': // Display trackbacks differently than normal comments. ?>
  • id="comment-">

    ', '' ); ?>

  • id="li-comment-">
    %1$s %2$s', get_comment_author_link(), // If current post author is also comment author, make it known visually. ( $comment->user_id === $post->post_author ) ? '' : '' ); ?>
    comment_approved ) : ?>

    '; } } add_filter( 'starterblog_nav_next_icon', 'starterblog_nav_next_icon' ); if ( ! function_exists( 'starterblog_nav_prev_icon' ) ) { function starterblog_nav_prev_icon() { return ''; } } add_filter( 'starterblog_nav_prev_icon', 'starterblog_nav_prev_icon' );