Skip to content

Instantly share code, notes, and snippets.

@ChrisFlannagan
Last active July 21, 2017 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisFlannagan/73bf8b7c892a1e3106e8b16991875863 to your computer and use it in GitHub Desktop.
Save ChrisFlannagan/73bf8b7c892a1e3106e8b16991875863 to your computer and use it in GitHub Desktop.
<?php
$distinct_ids = function ( $groupby ) {
    global $wpdb;
    return "{$wpdb->posts}.ID";
};
add_filter( 'posts_groupby', $distinct_ids );
$posts = get_posts( $args );
remove_filter( 'posts_groupby', $distinct_ids );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment