Yacht Slider Test
'property-slider',
);
// The Query
$the_query = new WP_Query( $args );
//var_dump($the_query);
// The Loop
if ( $the_query->have_posts() ) {
echo '
';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
?>
the_content();?>