'post', 'orderby' => 'date', 'order' => 'DESC', 'paged' => $paged, ); $wp_query = null; $wp_query = new WP_Query(); $wp_query->query( $args ); if ( $wp_query->have_posts() ) { echo '
'; echo '
'; the_title( '

', '

' ); bellini_breadcrumb_integration(); echo '
'; echo '
'; echo '
'; while ( $wp_query->have_posts() ) : $wp_query->the_post(); if ( absint($bellini['bellini_layout_blog']) === 1 ): get_template_part( 'template-parts/content' ); endif; if ( absint($bellini['bellini_layout_blog']) === 5 ): get_template_part( 'template-parts/content-lb-5'); endif; endwhile; bellini_pagination(); } else { get_template_part( 'template-parts/content', 'none' ); } wp_reset_postdata(); ?>