post_author; $img_size = is_single() ? 40 : 30; $byline = '' . esc_html( get_the_author_meta( 'display_name', $author_id ) ) . ''; echo '' . get_avatar( $author_id, $img_size ) . $byline . ''; endif; if ( collarbiz_meta_option( 'show_date', 'show_single_date' ) ) : $time_string = ''; 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 = get_month_link( $year, $month ); $posted_on = '' . $time_string . ''; echo '' . $posted_on . ''; // WPCS: XSS OK. endif; } endif; if ( ! function_exists( 'collarbiz_get_author' ) ) : /** * Prints HTML with meta information for the current author. */ function collarbiz_get_author() { $byline = '' . esc_html( get_the_author() ) . ''; return ' ' . $byline . ''; } endif; if ( ! function_exists( 'collarbiz_the_category' ) ) : /** * Prints HTML with meta information for the current author. */ function collarbiz_the_category() { if ( 'post' === get_post_type() ) { if ( collarbiz_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( ' ' ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '' . '%1$s' . '', $categories_list ); // WPCS: XSS OK. } endif; } } endif; if ( ! function_exists( 'collarbiz_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function collarbiz_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { if ( is_single() && collarbiz_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 %2$s' . '', esc_html__( 'Tagged in: ', 'collarbiz' ), $tags_list ); // WPCS: XSS OK. } endif; } if ( collarbiz_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', 'collarbiz' ), 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', 'collarbiz' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; /** * Checks to see if meta option is enabled in archive/blog and single */ function collarbiz_meta_option( $blog_option = '', $single_option = '' ) { if ( is_archive() || is_search() || is_home() ) : if ( collarbiz_theme_option( $blog_option ) ) return true; else return false; elseif ( is_single() ) : if ( collarbiz_theme_option( $single_option ) ) return true; else return false; else : return true; endif; }