posts_distinct_request
Filters the DISTINCT clause of the query.
For use by caching plugins.
Usage
add_filter( 'posts_distinct_request', 'wp_kama_posts_distinct_request_filter' ); /** * Function for `posts_distinct_request` filter-hook. * * @param string $distinct The DISTINCT clause of the query. * * @return string */ function wp_kama_posts_distinct_request_filter( $distinct ){ // filter... return $distinct; }
- $distinct(string)
- The DISTINCT clause of the query.
Changelog
Since 2.5.0 | Introduced. |
Where the hook is called
posts_distinct_request
wp-includes/class-wp-query.php 3040
$distinct = apply_filters_ref_array( 'posts_distinct_request', array( $distinct, &$this ) );