posts_distinct_request filter-hookWP 2.5.0

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

WP_Query::get_posts()
posts_distinct_request
wp-includes/class-wp-query.php 3035
$distinct = apply_filters_ref_array( 'posts_distinct_request', array( $distinct, &$this ) );

Where the hook is used in WordPress

Usage not found.