'post', 'post__in' => $content_ids, 'orderby' => 'post__in', 'posts_per_page' => absint( $blog_count ), ); $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' => get_the_excerpt(), 'permalink' => get_the_permalink(), 'thumbnail_url' => get_the_post_thumbnail_url( get_the_ID(), 'full' ), ); endwhile; wp_reset_postdata(); $section_content = apply_filters( 'educateup_blog_section_content', $section_content ); educateup_render_blog_section( $section_content ); endif; /** * Render blog section */ function educateup_render_blog_section( $section_content ) { if ( empty( $section_content ) ) { return; } $blog_title = get_theme_mod( 'educateup_blog_title', __( 'Featured Blog', 'educateup' ) ); $blog_subtitle = get_theme_mod( 'educateup_blog_subtitle' ); $blog_button_label = get_theme_mod( 'educateup_blog_button_label', __( 'View All', 'educateup' ) ); $blog_button_link = get_theme_mod( 'educateup_blog_button_link' ); $blog_button_link = ! empty( $blog_button_link ) ? $blog_button_link : '#'; ?>