'banner'] ); if ( $banner_type && $banner_type['desktop'] != 'none' ) : // Arguments $args = [ 'post_type' => 'post', 'posts_per_page' => 1, 'post_status' => 'publish', 'ignore_sticky_posts' => true, 'no_found_rows' => true ]; // slider args if ( $banner_type['desktop'] == 'slider' ) { $slider_cats = get_theme_mod( 'business_aarambha_header_banner_slider_cat', '' ); if ( $slider_cats ) { $args['category__in'] = absint($slider_cats); } $slides_limit = get_theme_mod( 'business_aarambha_header_banner_slider_limit', ['desktop' => 3 ] ); if ( $slides_limit ) { $args['posts_per_page'] = absint($slides_limit['desktop']); } } // single post args elseif ( $banner_type['desktop'] == 'banner' ) { $banner_id = get_theme_mod( 'business_aarambha_header_banner_post_id', '' ); $args['p'] = absint($banner_id); } $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) : // Content Elements $content_elements = get_theme_mod('business_aarambha_banner_post_content_elements', ['post-title','post-excerpt','read-more'] ); ?>