'; if($staff_page){ $page_qry = new WP_Query(array( 'post_type' => 'page', 'p' => $staff_page, )); if($page_qry->have_posts()){ while($page_qry->have_posts()){ $page_qry->the_post(); echo '
'; echo '

'; the_title(); echo '

'; the_excerpt(); echo '
'; } } wp_reset_postdata(); } if($staff_section_cat){ $staff_qry = new WP_Query( array( 'cat' => $staff_section_cat, 'posts_per_page' => "1", 'ignore_sticky_posts' => true ) ); if( $staff_qry->have_posts() ){ echo '
'; echo '
'; while($staff_qry->have_posts()){ $staff_qry-> the_post(); echo '
'; echo '
'; echo '
'; if( has_post_thumbnail() ){ the_post_thumbnail( 'bakes-and-cakes-staff-thumb', array( 'itemprop' => 'image' )); }else{ bakes_and_cakes_get_fallback_svg( 'bakes-and-cakes-staff-thumb' ); } echo '
'; echo '
'; echo ''; the_title(); echo ''; echo '

'; the_content(); echo '

'; echo '
'; echo '
'; echo '
'; } echo'
'; echo '
'; echo '
'; wp_reset_postdata(); } $qry = new WP_Query( array( 'cat' => $staff_section_cat, 'posts_per_page' => -1, 'ignore_sticky_posts' => true ) ); echo ''; } ?>