posts_distinct
Filters the DISTINCT clause of the query.
Usage
add_filter( 'posts_distinct', 'wp_kama_posts_distinct_filter' ); /** * Function for `posts_distinct` filter-hook. * * @param string $distinct The DISTINCT clause of the query. * * @return string */ function wp_kama_posts_distinct_filter( $distinct ){ // filter... return $distinct; }
- $distinct(string)
- The DISTINCT clause of the query.
Changelog
Since 2.1.0 | Introduced. |
Where the hook is called
posts_distinct
wp-includes/class-wp-query.php 2912
$distinct = apply_filters_ref_array( 'posts_distinct', array( $distinct, &$this ) );