' . $wp_query->found_posts . ' ' . esc_html__( 'Results', 'salient' ) . '
'; } $nectar_options = get_nectar_theme_options(); $blog_type = $nectar_options['blog_type']; if ( $blog_type === null ) { $blog_type = 'std-blog-sidebar'; } $masonry_class = null; $masonry_style = null; $masonry_style_parsed = null; $standard_style_parsed = null; $infinite_scroll_class = null; $load_in_animation = ( ! empty( $nectar_options['blog_loading_animation'] ) ) ? $nectar_options['blog_loading_animation'] : 'none'; $blog_standard_type = ( ! empty( $nectar_options['blog_standard_type'] ) ) ? $nectar_options['blog_standard_type'] : 'classic'; $enable_ss = ( ! empty( $nectar_options['blog_enable_ss'] ) ) ? $nectar_options['blog_enable_ss'] : 'false'; $auto_masonry_spacing = ( ! empty( $nectar_options['blog_auto_masonry_spacing'] ) ) ? $nectar_options['blog_auto_masonry_spacing'] : '4px'; $remove_post_date = ( ! empty( $nectar_options['blog_remove_post_date'] ) ) ? $nectar_options['blog_remove_post_date'] : '0'; $remove_post_author = ( ! empty( $nectar_options['blog_remove_post_author'] ) ) ? $nectar_options['blog_remove_post_author'] : '0'; $remove_post_comment_number = ( ! empty( $nectar_options['blog_remove_post_comment_number'] ) ) ? $nectar_options['blog_remove_post_comment_number'] : '0'; $remove_post_nectar_love = ( ! empty( $nectar_options['blog_remove_post_nectar_love'] ) ) ? $nectar_options['blog_remove_post_nectar_love'] : '0'; // Enqueue masonry script if selected. if ( $blog_type === 'masonry-blog-sidebar' || $blog_type === 'masonry-blog-fullwidth' || $blog_type === 'masonry-blog-full-screen-width' ) { $masonry_class = 'masonry'; } $blog_masonry_style = ( ! empty( $nectar_options['blog_masonry_type'] ) ) ? $nectar_options['blog_masonry_type'] : 'classic'; if ( ! empty( $nectar_options['blog_pagination_type'] ) && $nectar_options['blog_pagination_type'] === 'infinite_scroll' ) { $infinite_scroll_class = ' infinite_scroll'; } // Store masonry style. if ( $masonry_class !== null ) { $masonry_style = ( ! empty( $nectar_options['blog_masonry_type'] ) ) ? $nectar_options['blog_masonry_type'] : 'classic'; $masonry_style_parsed = str_replace('_', '-', $masonry_style); } else { $standard_style_parsed = str_replace('_', '-', $blog_standard_type); } $std_minimal_class = ''; if ( $blog_standard_type == 'minimal' && $blog_type === 'std-blog-fullwidth' ) { $std_minimal_class = 'standard-minimal full-width-content'; } elseif ( $blog_standard_type == 'minimal' && $blog_type === 'std-blog-sidebar' ) { $std_minimal_class = 'standard-minimal'; } if ( $masonry_style === null && $blog_standard_type === 'featured_img_left' ) { $std_minimal_class = 'featured_img_left'; } if ( $blog_type === 'std-blog-sidebar' || $blog_type === 'masonry-blog-sidebar' ) { echo '
'; // WPCS: XSS ok. } else { if ( $blog_type === 'masonry-blog-full-screen-width' && $blog_masonry_style === 'auto_meta_overlaid_spaced' || $blog_type === 'masonry-blog-full-screen-width' && $blog_masonry_style === 'meta_overlaid' ) { echo '
'; } elseif ( $blog_type === 'masonry-blog-full-screen-width' ) { echo '
'; } echo '
'; // WPCS: XSS ok. } add_filter( 'wp_get_attachment_image_attributes', 'nectar_remove_lazy_load_functionality' ); do_action('nectar_before_blog_loop_content'); // Main post loop. if ( have_posts() ) : while ( have_posts() ) : the_post(); $nectar_post_format = get_post_format(); if( get_post_format() === 'image' || get_post_format() === 'aside' || get_post_format() === 'status' ) { $nectar_post_format = false; } // Masonry layouts. if( null !== $masonry_class ) { get_template_part( 'includes/partials/blog/styles/masonry-'.$masonry_style_parsed.'/entry', $nectar_post_format ); } // Standard layouts. else { get_template_part( 'includes/partials/blog/styles/standard-'.$standard_style_parsed.'/entry', $nectar_post_format ); } endwhile; endif; do_action('nectar_after_blog_loop_content'); ?>
'; } ?>