Skip to content

Instantly share code, notes, and snippets.

@ChrisBuchholz
Created October 2, 2013 07:56
Show Gist options
  • Save ChrisBuchholz/6790381 to your computer and use it in GitHub Desktop.
Save ChrisBuchholz/6790381 to your computer and use it in GitHub Desktop.
<?php
add_filter('posts_where', 'unique_areas', 10, 2);
function unique_areas($where, $query) {
global $wpdb;
$where .= " AND DISTINCT {$wpdb->postmeta}.meta_value";
return $where;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment