%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 . '' ); echo ' ' . $posted_on . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'faith_blog_time' ) ) { function faith_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( 'faith_blog_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function faith_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 = ''; if (false === $author_image) { $get_author_image = __('Posted by', 'faith-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( 'faith_blog_comment_popuplink' ) ) { function faith_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', 'faith-blog' ), __( '1 Comment', 'faith-blog' ), __( '% Comments', 'faith-blog' ), $css_class, __( 'Comments are Closed', 'faith-blog' ) ); echo ''; } } } function faith_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( 'faith_blog_post_tag' ) ) { function faith_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( '', esc_html_x( ', ', 'list item separator', 'faith-blog' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '' . esc_html__( 'Tagged %1$s', 'faith-blog' ) . '', $tags_list ); // WPCS: XSS OK. } } return; } } if ( ! function_exists( 'faith_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 faith_blog_post_thumbnail() { $get_blog_layout = get_theme_mod('blog_layout', 'grid'); $thumbnail_size = 'faith-blog-grid-thumbnail'; if (is_single() || is_page()) { $thumbnail_size = 'faith-blog-thumbnail-large'; }else{ if('list' === $get_blog_layout) { $thumbnail_size = 'faith-blog-thumbnail-large'; }elseif ('grid' === $get_blog_layout) { $thumbnail_size = 'faith-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 faith_blog_social_activity(){ $facebook = get_theme_mod( 'facebook', '#' ); $twitter = get_theme_mod('twitter', '#'); $amazon = get_theme_mod('amazon'); $pinterest = get_theme_mod('pinterest'); $youtube = get_theme_mod('youtube', '#'); $instagram = get_theme_mod('instagram', '#'); $github = get_theme_mod('github'); $stumbleupon = get_theme_mod('stumbleupon'); $tumblr = get_theme_mod('tumblr'); $whatsapp = get_theme_mod('whatsapp'); $weixin = get_theme_mod('weixin'); $snapchat = get_theme_mod('snapchat'); $qq = get_theme_mod('qq'); $reddit = get_theme_mod('reddit'); $linkedin = get_theme_mod('linkedin'); if(!empty($facebook)) : ?> '; $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 '
'; }