$aster_vlogger_slider_content_type, 'posts_per_page' => 6, 'ignore_sticky_posts' => true, ); // Check if a category is selected if ( 'post' === $aster_vlogger_slider_content_type && ! empty( $aster_vlogger_banner_slider_category ) ) { // If there are specific posts selected, fetch those if ( ! empty( $aster_vlogger_slider_content_ids ) ) { $args['post__in'] = $aster_vlogger_slider_content_ids; $args['orderby'] = 'post__in'; } else { // If no specific posts, fallback to latest posts from the selected category $args['category_name'] = $aster_vlogger_banner_slider_category; } } $aster_vlogger_query = new WP_Query( $args ); ?>