comment_feed_groupby
Filters the GROUP BY clause of the comments feed query before sending.
Использование
add_filter( 'comment_feed_groupby', 'wp_kama_comment_feed_groupby_filter' ); /** * Function for `comment_feed_groupby` filter-hook. * * @param string $cgroupby The GROUP BY clause of the query. * * @return string */ function wp_kama_comment_feed_groupby_filter( $cgroupby ){ // filter... return $cgroupby; }
- $cgroupby(строка)
- The GROUP BY clause of the query.
Список изменений
С версии 2.2.0 | Введена. |
Где вызывается хук
comment_feed_groupby
wp-includes/class-wp-query.php 2855
$cgroupby = apply_filters_ref_array( 'comment_feed_groupby', array( $cgroupby, &$this ) );
wp-includes/class-wp-query.php 3474
$cgroupby = apply_filters_ref_array( 'comment_feed_groupby', array( '', &$this ) );