$content_type, 'posts_per_page' => absint( $content_count ), 'ignore_sticky_posts' => true, ); if ( ! empty( array_filter( $content_id ) ) ) { $args['post__in'] = array_filter( $content_id ); $args['orderby'] = 'post__in'; } else { $args['orderby'] = 'date'; } $args = apply_filters( 'business_vibes_about_section_content', $args ); business_vibes_render_about_section( $args ); } /** * Render About Section */ function business_vibes_render_about_section( $args ) { $query = new WP_Query( $args ); if ( $query->have_posts() ) : $section_subtitle = get_theme_mod( 'business_vibes_about_subtitle', __( 'About Us', 'business-vibes' ) ); $button_label = get_theme_mod( 'business_vibes_about_button_label', __( 'Explore More', 'business-vibes' ) ); while ( $query->have_posts() ) : $query->the_post(); ?>