%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( blog_postx_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( blog_postx_get_modified_date($post_id) ) ); $year = get_the_date( 'Y' ); $month = get_the_date( 'm' ); $posted_on = '' . $time_string . ''; $global_date_icon_picker = [ 'type' => 'icon', 'value' => 'fa-solid fa-calendar' ]; $icon_html = blog_postx_get_icon_control_html( $global_date_icon_picker ); if( $icon_html ) $posted_on = $icon_html . $posted_on; if( array_key_exists( 'return', $args ) && $args['return'] ) : $posted_on = $icon_html . ''; return '' . $posted_on . ''; else: echo '' . $posted_on . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped endif; } endif; if ( ! function_exists( 'blog_postx_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function blog_postx_posted_by( $for = '', $blog_postx_post_id = 0 ) { $show_author_meta_text_on_mobile = true; $hide_on_mobile = ( ! $show_author_meta_text_on_mobile ) ? ' hide-on-mobile' : ''; if( $blog_postx_post_id > 0 ) : $author_id = get_post_field( 'post_author', $blog_postx_post_id ); else : $author_id = get_the_author_meta( 'ID' ); endif; $byline = sprintf( /* translators: %s: post author. */ esc_html_x( '%s', 'post author', 'blog-postx' ), '' ); $global_show_author_image = BPX\blog_postx_get_customizer_option( 'global_show_author_image' ); if( $global_show_author_image ) { $author_image = get_avatar( $author_id, 40 ); if( $author_image ) $byline = $author_image . $byline; } else { $byline = '' . $byline; } $archive_author_text_on_mobile = true; $hide_on_mobile = ( ! $archive_author_text_on_mobile ) ? ' hide-on-mobile' : ''; echo ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } endif; if( ! function_exists( 'blog_postx_tags_list' ) ) : /** * print the html for tags list */ function blog_postx_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( '', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } } endif; if ( ! function_exists( 'blog_postx_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function blog_postx_entry_footer() { edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'blog-postx' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ), '', '' ); } endif; if ( ! function_exists( 'blog_postx_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 blog_postx_post_thumbnail( $size = 'thumbnail' ) { if ( post_password_required() || is_attachment() ) { return; } if ( is_singular() ) : ?>