%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 = '' . $time_string . ''; echo '' . $posted_on . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'esfahan_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function esfahan_posted_by() { $byline = sprintf( /* translators: %s: post author. */ esc_html_x( 'by %s', 'post author', 'esfahan' ), '' . esc_html( get_the_author() ) . '' ); echo ' ' . $byline . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'esfahan_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function esfahan_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( '', esc_html_x( ', ', 'list item separator', 'esfahan' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '' . esc_html__( 'Tagged %1$s', 'esfahan' ) . '', $tags_list ); // WPCS: XSS OK. } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'esfahan' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'esfahan' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'esfahan_post_thumbnail' ) ) : /** * Displays an optional post thumbnail. * * Wraps the post thumbnail in an anchor element on index views, or a div * element when on single views. */ function esfahan_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } $layout = get_theme_mod( 'blog_layout', 'layout-default' ); if ( is_singular() ) : ?>
term_id ) ) . '">' . esc_html( $categories[0]->name ) . ''; } } /** * All categories */ function esfahan_all_categories() { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( esc_html__( ' - ', 'esfahan' ) ); if ( $categories_list ) { echo '' . ent2ncr($categories_list) . ''; } } /** * Get the comments */ function esfahan_get_comments_number() { echo ''; $comment_count = get_comments_number(); if ( '1' === $comment_count ) { esc_html_e( '1 comment', 'esfahan' ); } else { printf( // WPCS: XSS OK. /* translators: 1: comment count number, 2: title. */ esc_html( _nx( '%1$s comment', '%1$s comments', $comment_count, 'comments title', 'esfahan' ) ), number_format_i18n( $comment_count ) ); } echo ''; }