$content_type, 'posts_per_page' => absint( 3 ), 'ignore_sticky_posts' => true, ); if ( ! empty( array_filter( $content_ids ) ) ) { $args['post__in'] = array_filter( $content_ids ); $args['orderby'] = 'post__in'; } else { $args['orderby'] = 'date'; } $query = new WP_Query( $args ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); $section_content[] = array( 'id' => get_the_ID(), 'title' => get_the_title(), 'excerpt' => wp_trim_words( get_the_content(), 20 ), 'permalink' => get_the_permalink(), 'thumbnail_url' => get_the_post_thumbnail_url( get_the_ID(), 'full' ), ); endwhile; wp_reset_postdata(); $section_content = apply_filters( 'business_vibes_banner_section_content', $section_content ); business_vibes_render_banner_section( $section_content, $btn_label, $btn_link ); endif; /** * Render Banner Section */ function business_vibes_render_banner_section( $section_content, $btn_label, $btn_link ) { if ( empty( $section_content ) ) { return; } ?>