';
while (have_posts()) : the_post();
$op .= '
';
if (has_post_thumbnail()) {
$image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'medium');
$op .= '
';
}
$op .= '
';
$op .= '
';
if (get_post_meta(get_the_ID(), 'swift_staff_job_title', true)) {
$op .= '
';
}
$op .= '
';
endwhile;
$op .= '
';
echo $op;
?>