%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 = sprintf( '%s', ' ' . $time_string . '' ); if( ample_magazine_validate_gravatar (get_the_author_meta( 'user_email' ))){ $avatar = get_avatar( get_the_author_meta( 'user_email' ), $avatar_size, '' ); $author_wrap = 'has-avatar'; } else{ $avatar = ''; $author_wrap = 'no-avatar'; } $byline = sprintf( '%s', ''. $avatar . "".esc_html( get_the_author() ) . '' ); echo ' ' . $byline . '' . $posted_on . ''; // WPCS: XSS OK. if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( esc_html__( 'Leave a comment', 'ample-magazine' ), esc_html__( '1 Comment', 'ample-magazine' ), esc_html__( '% Comments', 'ample-magazine' ) ); echo ''; } edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'ample-magazine' ), the_title( '"', '"', false ) ), '', '' ); } endif; if ( ! function_exists( 'ample_magazine_entry_footer' ) ) : /** * Prints HTML with meta information for tags. */ function ample_magazine_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( ); if ( $tags_list ) { printf( '%1$s', $tags_list ); // WPCS: XSS OK. } } } endif; if ( ! function_exists( 'ample_magazine_entry_cats' ) ) : /** * Prints HTML with meta information for the categories. */ function ample_magazine_entry_cats() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( esc_html__( ', ', 'ample-magazine' ) ); if ( $categories_list && ample_magazine_categorized_blog() ) { printf( '%1$s', $categories_list ); // WPCS: XSS OK. } } } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ if ( ! function_exists( 'ample_magazine_categorized_blog' ) ) : function ample_magazine_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'ample_magazine_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'fields' => 'ids', 'hide_empty' => 1, // We only need to know if there is more than one category. 'number' => 2, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'ample_magazine_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so ample_magazine_categorized_blog should return true. return true; } else { // This blog has only 1 category so ample_magazine_categorized_blog should return false. return false; } } endif; /* ** * Prints HTML with meta information for the categories, tags and comments. */ function ample_magazine_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 */ $categories_list = get_the_category_list( esc_html__( ',', 'ample-magazine' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ ?> ' . esc_html__( 'Posted in %1$s', 'ample-magazine' ) . '', $categories_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } } /** * Flush out the transients used in ample_magazine_categorized_blog. */ if ( ! function_exists( 'ample_magazine_category_transient_flusher' ) ) : function ample_magazine_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'ample_magazine_categories' ); } endif; add_action( 'edit_category', 'ample_magazine_category_transient_flusher' ); add_action( 'save_post', 'ample_magazine_category_transient_flusher' ); /** * List down the get category * * @param int $post_id * @return string list of category * * @since Ample Magazine 1.0.0 * */ if (!function_exists('ample_magazine_get_category')) : function ample_magazine_get_category($post_id = 0) { if (0 == $post_id) { global $post; $post_id = $post->ID; } $categories = get_the_category($post_id); $output = ''; $separator = ' '; if ($categories) { $output .= ''; foreach ($categories as $category) { $output .= '' . esc_html($category->cat_name) . '' . $separator; } echo $output; $output .= ''; return $output; } } endif; /* for time format * * @since Ample Magazine 1.0.0 * */ if (!function_exists('ample_magazine_posted_on_theme')) : /** * Prints HTML with meta information for the current post-date/time and author. */ function ample_magazine_posted_on_theme() { $date_format = ample_magazine_get_option('ample_magazine_date_format_option'); if ($date_format == 'theme-default') { $time_string = human_time_diff(get_the_time('U'), current_time('timestamp')) . ' ' . __('ago', 'ample-magazine'); } else { $time_string = get_the_time(get_option('date_format')); } $date_show = ample_magazine_get_option('ample_magazine_meta_date_options'); if($date_show=='date-author') { $posted_on = '' . esc_html($time_string) . ' '; $byline = '' . esc_html(get_the_author()) . ' '; echo '
' . $posted_on . '
' . $byline . '
'; // WPCS: XSS OK. }elseif($date_show=='date-only'){ echo get_the_date(); } else{ return; } } endif;