$content_type, 'post__in' => $content_id, 'orderby' => 'post__in', 'posts_per_page' => absint( $content_count ), 'ignore_sticky_posts' => true, ); $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(), 'permalink' => get_the_permalink(), 'thumbnail_url' => get_the_post_thumbnail_url( get_the_ID(), 'full' ), ); endwhile; wp_reset_postdata(); endif; $section_content = apply_filters( 'educateup_team_section_content', $section_content ); educateup_render_team_section( $section_content, $designation, $social_links ); /** * Render Team Section. */ function educateup_render_team_section( $section_content, $designation, $social_links ) { $section_title = get_theme_mod( 'educateup_team_section_title', __( 'Meet our Teachers', 'educateup' ) ); $section_subtitle = get_theme_mod( 'educateup_team_section_subtitle' ); $team_button_label = get_theme_mod( 'educateup_team_button_label' ); $team_button_link = get_theme_mod( 'educateup_team_button_link' ); $team_button_link = ! empty( $team_button_link ) ? $team_button_link : '#'; ?>