have_posts() ){ while( $service_qry->have_posts() ){ $service_qry->the_post(); echo '
'; the_title( '

', '

' ); the_content(); echo '
'; } wp_reset_postdata(); }; } $services_qry = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => -1, 'post__in' => $app_landing_page_service_posts, 'orderby' => 'post__in', 'ignore_sticky_posts' => true ) ); echo '
'; if( $services_qry->have_posts() ){ while( $services_qry->have_posts() ){ $services_qry->the_post(); echo '
'; if( has_post_thumbnail() ){ echo '
'; the_post_thumbnail( 'app-landing-page-features-image-small' ); echo '
' ; } echo '
'; the_title( '

', '

' ); the_content(); echo '
'; echo '
'; } wp_reset_postdata(); } echo '
'; if( $app_landing_page_service_section_button_link ){ echo ' '; } ?>