$content_type, 'post__in' => $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['id'] = get_the_ID(); $section_content['title'] = get_the_title(); $section_content['excerpt'] = get_the_excerpt(); $section_content['content'] = get_the_content(); $section_content['permalink'] = get_the_permalink(); $section_content['thumbnail_url'] = get_the_post_thumbnail_url( get_the_ID(), 'full' ); endwhile; wp_reset_postdata(); $section_content = apply_filters( 'educateup_mission_section_content', $section_content ); educateup_render_mission_section( $section_content ); endif; } function educateup_render_mission_section( $section_content ) { $mission_button_label = get_theme_mod( 'educateup_mission_button_label' ); $mission_button_link = get_theme_mod( 'educateup_mission_button_link' ); $mission_button_link = ! empty( $mission_button_link ) ? $mission_button_link : '#'; if ( empty( $section_content ) ) { return; } ?>

<?php echo esc_attr( $section_content['title'] ); ?>