'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(); $header_description = get_post_meta( get_the_ID(),'_bellini_header_description',true); echo '
'; echo $header_description; echo '
'; echo '
'; echo '
'; echo '
'; while ( $wp_query->have_posts() ) : $wp_query->the_post(); if ( get_option('bellini_layout_blog', 'layout-1') == 'layout-1' ): get_template_part( 'template-parts/content' ); endif; if ( get_option('bellini_layout_blog', 'layout-1') == 'layout-5' ): get_template_part( 'template-parts/content-lb-5'); endif; endwhile; bellini_pagination(); } else { get_template_part( 'template-parts/content', 'none' ); } wp_reset_postdata(); ?>