%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() ) ); $allowed_html = array( 'a' => array( 'href' => array(), 'title' => array(), ), 'br' => array(), 'em' => array(), 'strong'=> array(), 'time' => array( 'class' => array(), 'datetime' => array(), ), 'span'=>array( 'class' => array(), ), ); $posted_on = ' ' . wp_kses($time_string, $allowed_html) . ''; $byline = ''; if($show_date){ echo '' . wp_kses($posted_on, $allowed_html) . ''; } if($show_author){ echo ''; } } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'blogmagazine_inner_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function blogmagazine_inner_posted_on( $show_date=true, $show_author=true, $show_comments = true ) { blogmagazine_posted_on( $show_date, $show_author ); if(!$show_comments){ return; } 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', 'blogmagazine' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'blogmagazine_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function blogmagazine_entry_footer( $show_tag = true, $edit_link=true ) { if ( is_single() && $show_tag ) { /* 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 ); // WPCS: XSS OK. } } if(!$edit_link){ return; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'blogmagazine' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ /** * Returns true if a blog has more than 1 category. * * @return bool */ function blogmagazine_categorized_blog() { $all_the_cool_cats = get_transient( 'blogmagazine_categories' ); if ( false === $all_the_cool_cats ) { // 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( 'blogmagazine_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 || is_preview() ) { // This blog has more than 1 category so blogmagazine_categorized_blog should return true. return true; } else { // This blog has only 1 category so blogmagazine_categorized_blog should return false. return false; } } /*-----------------------------------------------------------------------------------------------------------------------*/ /** * Flush out the transients used in blogmagazine_categorized_blog. */ function blogmagazine_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'blogmagazine_categories' ); } add_action( 'edit_category', 'blogmagazine_category_transient_flusher' ); add_action( 'save_post', 'blogmagazine_category_transient_flusher' ); /*-----------------------------------------------------------------------------------------------------------------------*/ /** * Categories list in multiple color background * * @since 1.0.0 */ if( ! function_exists( 'blogmagazine_post_categories_list' ) ): function blogmagazine_post_categories_list() { global $post; $post_id = $post->ID; $categories_list = get_the_category( $post_id ); if( !empty( $categories_list ) ) { $cat_count = apply_filters( 'blogmagazine_cat_list_count', 2 ); $count = 0; ?>