%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() ), esc_attr( get_the_modified_date( DATE_W3C ) ), esc_html( get_the_modified_date() ) ); $timeIcon = '%1$s'; $posted_on = sprintf( $timeIcon, '' . $time_string . '' ); $line = ' '; echo ''.$line.'' . $posted_on . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'rs_pet_blog_time' ) ) { function rs_pet_blog_time() { $time_string = ''; 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() ), esc_attr( get_the_modified_date( DATE_W3C ) ), esc_html( get_the_modified_date() ) ); echo '' . wp_kses_post( $time_string ) . ''; } } if ( ! function_exists( 'rs_pet_blog_posted_by' ) ) : function rs_pet_blog_posted_by( $author_image = true ) { $posted_by_format = '%2$s %3$s'; $post_author_id = get_post_field( 'post_author', get_queried_object_id() ); $get_author_image = ' ' . get_avatar( get_the_author_meta( 'ID' ), 30 ) . ' '; if ( false === $author_image ) { $get_author_image = __( 'Posted by', 'rs-pet-blog' ); } $postedBy = sprintf( $posted_by_format, esc_url( get_author_posts_url( get_the_author_meta( $post_author_id ), get_the_author_meta( 'user_nicename' ) ) ), $get_author_image, '' . esc_html( get_the_author_meta( 'display_name', $post_author_id ) ) . '' ); echo '' . wp_kses_post( $postedBy ) . ''; } endif; if ( ! function_exists( 'rs_pet_blog_comment_popuplink' ) ) { function rs_pet_blog_comment_popuplink() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { // $commentIcon = ; echo ''; $css_class = 'zero-comments'; $number = (int) get_comments_number( get_the_ID() ); if ( 1 === $number ) { $css_class = 'one-comment'; } elseif ( 1 < $number ) { $css_class = 'multiple-comments'; } comments_popup_link( __( 'Post a Comment', 'rs-pet-blog' ), __( '1 Comment', 'rs-pet-blog' ), __( '% Comments', 'rs-pet-blog' ), $css_class, __( 'Comments are Closed', 'rs-pet-blog' ) ); echo ''; } } } function rs_pet_blog_categories() { if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( ' ' ); if ( $categories_list ) { printf( '' . '%1$s' . '', $categories_list ); // WPCS: XSS OK. } } return; } if ( ! function_exists( 'rs_pet_blog_post_tag' ) ) { function rs_pet_blog_post_tag() { 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( '' . wp_kses_post($tags_list) . '', $tags_list ); // WPCS: XSS OK. } } return; } } if ( ! function_exists( 'rs_pet_blog_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 rs_pet_blog_post_thumbnail() { $get_blog_layout = get_theme_mod( 'blog_layout', 'grid' ); $thumbnail_size = 'rs-pet-blog-grid-thumbnail'; if ( is_single() || is_page() ) { $thumbnail_size = 'rs-pet-blog-thumbnail-large'; } else { if ( 'list' === $get_blog_layout ) { $thumbnail_size = 'rs-pet-blog-thumbnail-large'; } elseif ( 'grid' === $get_blog_layout ) { $thumbnail_size = 'rs-pet-blog-grid-thumbnail'; } } $post_thumnail = wp_get_attachment_image_url( get_post_thumbnail_id( get_the_ID() ), $thumbnail_size ); if ( is_single() || is_page() ) { the_post_thumbnail( $thumbnail_size ); } else { if ( has_post_thumbnail() ) : ?> '; endif; } } endif; function rs_pet_blog_navigation() { $next_icon = ''; $prev_icon = ''; $pagination_alignment = get_theme_mod( 'blog_page_pagination', 'center' ); echo '
'; the_posts_pagination( array( 'mid_size' => 2, 'prev_text' => $prev_icon, 'next_text' => $next_icon, ) ); echo '
'; }