%2$s'; $time = $post_id ? get_the_time( 'U', $post_id ) : get_the_time( 'U' ); $modified_time = $post_id ? get_the_modified_time( 'U', $post_id ) : get_the_modified_time( 'U' ); if ( $time !== $modified_time ) { $time_string = ''; } $hide_on_mobile = ''; if( array_key_exists( 'hide_on_mobile', $args ) ) : $hide_on_mobile = ( ! $args['hide_on_mobile'] ) ? ' hide-on-mobile' : ''; endif; $time_string = sprintf( $time_string, esc_attr( $post_id ? get_the_date( DATE_W3C, $post_id ) : get_the_date( DATE_W3C ) ), esc_html( blogzee_get_published_date($post_id) ), esc_attr( $post_id ? get_the_modified_date( DATE_W3C, $post_id ) : get_the_modified_date( DATE_W3C ) ), esc_html( blogzee_get_modified_date($post_id) ) ); $year = get_the_date( 'Y' ); $month = get_the_date( 'm' ); $posted_on = '' . $time_string . ''; $icon_html = blogzee_get_icon_control_html([ 'type' => 'icon', 'value' => 'fas fa-calendar-days' ]); if( $for == 'banner' ) { if( $icon_html ) $posted_on = $icon_html . $posted_on; } else if( $for == 'carousel' ) { if( $icon_html ) $posted_on = $icon_html . $posted_on; } else if( $for == 'ticker' ) { if( $icon_html ) $posted_on = $icon_html . $posted_on; } else if( $for == 'you-may-have-missed' ) { if( $icon_html ) $posted_on = $icon_html . $posted_on; }else if( is_home() || is_archive() || is_search() ) { if( $icon_html ) $posted_on = $icon_html . $posted_on; } else if( is_single() ) { if( $icon_html ) $posted_on = $icon_html . $posted_on; } if( array_key_exists( 'icon_html', $args ) ) : $posted_on = $args['icon_html'] . $posted_on; endif; if( array_key_exists( 'return', $args ) && $args['return'] ) : $posted_on = $icon_html . ''. $time_string .''; return '' . $posted_on . ''; else: echo '' . $posted_on . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped endif; } endif; if ( ! function_exists( 'blogzee_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function blogzee_posted_by( $for = '', $blogzee_post_id = 0 ) { if( $blogzee_post_id > 0 ) : $author_id = get_post_field( 'post_author', $blogzee_post_id ); else : $author_id = get_the_author_meta( 'ID' ); endif; $byline = sprintf( /* translators: %s: post author. */ esc_html_x( '%s', 'post author', 'blogzee' ), '' . esc_html( get_the_author_meta( 'display_name', $author_id ) ) . '' ); if( $for == 'banner' ) { $author_image = get_avatar( $author_id, 40 ); if( $author_image ) $byline = $author_image . $byline; } else if( $for == 'carousel' ) { $author_image = get_avatar( $author_id, 40 ); if( $author_image ) $byline = $author_image . $byline; } else { if( is_home() || is_archive() ) : $author_image = get_avatar( $author_id, 40 ); if( $author_image ) $byline = $author_image . $byline; endif; if( is_single() ) : $single_author_image_option = BZ\blogzee_get_customizer_option( 'single_author_image_option' ); if( $single_author_image_option ) { $author_image = get_avatar( $author_id, 40 ); if( $author_image ) $byline = $author_image . $byline; } endif; if( is_search() ) : $author_image = get_avatar( $author_id, 40 ); if( $author_image ) $byline = $author_image . $byline; endif; } echo ' ' . $byline . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } endif; if( ! function_exists( 'blogzee_tags_list' ) ) : /** * print the html for tags list */ function blogzee_tags_list() { // 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( '' . esc_html__( 'Tagged: %1$s', 'blogzee' ) . '', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } } endif; if ( ! function_exists( 'blogzee_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function blogzee_entry_footer() { edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'blogzee' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ), '', '' ); } endif; if ( ! function_exists( 'blogzee_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 blogzee_post_thumbnail( $size = 'thumbnail' ) { if ( post_password_required() || is_attachment() ) { return; } if ( is_singular() ) : ?>