';
if( $app_landing_page_featured_section_title ) echo '
' . esc_html( $app_landing_page_featured_section_title ) . '
';
$blog_qry = new WP_Query(
array(
'cat' => $app_landing_page_featured_cat,
'post_status' => 'publish',
'posts_per_page' => 6,
'ignore_sticky_posts' => true
));
if( $blog_qry->have_posts() ){
echo '
';
while( $blog_qry->have_posts() ){
$blog_qry->the_post();
echo '
';
the_post_thumbnail( 'app-landing-page-featured-cat' );
echo '
';
}
wp_reset_postdata();
echo '
';
}
echo '
';
echo '';
}