Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Last active May 27, 2024 19:59
Show Gist options
  • Save propertyhive/4249b5063146b47db1c5c420afaab73d to your computer and use it in GitHub Desktop.
Save propertyhive/4249b5063146b47db1c5c420afaab73d to your computer and use it in GitHub Desktop.
<?php
$args = array(
'post_type' => 'property',
'fields' => 'ids',
'nopaging' => true,
'meta_query' => array(
array(
'key' => '_department',
'value' => 'village-country'
),
array(
'key' => '_on_market',
'value' => 'yes'
),
)
);
$vac_query = new WP_Query($args);
echo 'Showing ' . $vac_query->found_posts . ' properties';
wp_reset_postdata();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment