%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() ) ); $year = get_the_date( 'Y' ); $month = get_the_date( 'm' ); $link = ( is_single() ) ? get_month_link( $year, $month ) : get_permalink(); $posted_on = '' . $time_string . ''; echo '' . $posted_on . ''; // WPCS: XSS OK. endif; } endif; if ( ! function_exists( 'chives_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function chives_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { if ( chives_meta_option( 'show_category', 'show_single_category' ) ) : /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( esc_html__( ', ', 'chives' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '' . '%1$s' . '', $categories_list ); // WPCS: XSS OK. } endif; if ( is_single() && chives_meta_option( '', 'show_single_tags' ) ) : /* 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( '' . '%1$s' . '', $tags_list ); // WPCS: XSS OK. } endif; } if ( chives_meta_option( 'show_author', 'show_single_author' ) ) : $dash = is_single() ? '- ' : ''; $byline = sprintf( /* translators: %s: post author. */ esc_html_x( ' by %s', 'post author', 'chives' ), '' . esc_html( get_the_author() ) . '' ); echo ' ' . $dash . $byline . ''; endif; if ( chives_meta_option( 'show_comment', '' ) ) : if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'chives' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } endif; edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'chives' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; /** * Checks to see if meta option is enabled in archive/blog and single */ function chives_meta_option( $blog_option = '', $single_option = '' ) { if ( is_archive() || is_search() || is_home() ) : if ( chives_theme_option( $blog_option ) ) return true; else return false; elseif ( is_single() ) : if ( chives_theme_option( $single_option ) ) return true; else return false; else : return true; endif; }