$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
'orderby' => 'date',
'meta_key' => 'status',
'order' => 'DESC'
);
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
$featured_img_url = get_the_post_thumbnail_url(get_the_id(), 'full');
$status_type = get_field('status');
if(get_field('top_bar_status')) {
$status_type = get_field('top_bar_status');
}
?>
if(get_field('sold_type')) { ?>| }?>
Portfolio
if(get_field('neighbourhood')) { ?>
} ?>
if(get_field('acerage')) { ?>
} ?>
if(!get_field('no_link')) { ?>
} ?>
if(!get_field('no_link')) { ?>
} ?>
}
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata(); ?>