%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( DATE_W3C ) ), esc_html( get_the_date() ) ); $posted_on = sprintf( '%s', '' . $time_string . '' ); echo '' . $posted_on . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'timesnews_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function timesnews_posted_by() { $byline = sprintf( ' ' . esc_html( get_the_author() ) . ' ' ); echo $byline ; // WPCS: XSS OK. } endif; if ( ! function_exists( 'timesnews_comment_links' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function timesnews_comment_links() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Comment on %s', 'timesnews' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'timesnews' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'timesnews_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 timesnews_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?>
%1$s ', $tags_list ); // WPCS: XSS OK. } } endif; if ( ! function_exists( 'timesnews_cat_lists' ) ) : function timesnews_cat_lists () { global $post; $post_id = $post->ID; $categories_list = get_the_category($post_id); ?> name; $cat_id = $category_data->term_id; $cat_link = get_category_link( $cat_id ); ?> object ){ $category = get_category( $item->object_id ); if(isset($category->term_id)) { $classes[] = 'category-color-' . absint($category->term_id); } } return $classes; } add_filter( 'nav_menu_css_class', 'timesnews_nav_class', 10, 4); endif;