$content_type, 'post__in' => (array) $content_id, 'orderby' => 'post__in', 'posts_per_page' => 1, 'ignore_sticky_posts' => true, ); $query = new WP_Query( $args ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); $section_content['title'] = get_the_title(); $section_content['excerpt'] = get_the_excerpt(); $section_content['thumbnail_url'] = get_the_post_thumbnail_url( get_the_ID(), 'full' ); endwhile; wp_reset_postdata(); $section_content = apply_filters( 'educateup_banner_section_content', $section_content ); educateup_render_banner_section( $section_content ); endif; function educateup_render_banner_section( $section_content ) { if ( empty( $section_content ) ) { return; } ?>