comment_feed_join
Filters the JOIN clause of the comments feed query before sending.
Использование
add_filter( 'comment_feed_join', 'wp_kama_comment_feed_join_filter', 10, 2 ); /** * Function for `comment_feed_join` filter-hook. * * @param string $cjoin The JOIN clause of the query. * @param WP_Query $query The WP_Query instance (passed by reference). * * @return string */ function wp_kama_comment_feed_join_filter( $cjoin, $query ){ // filter... return $cjoin; }
- $cjoin(строка)
- The JOIN clause of the query.
- $query(WP_Query)
- The WP_Query instance (passed by reference).
Список изменений
С версии 2.2.0 | Введена. |
Где вызывается хук
comment_feed_join
wp-includes/class-wp-query.php 2677
$cjoin = apply_filters_ref_array( 'comment_feed_join', array( $cjoin, &$this ) );
wp-includes/class-wp-query.php 3164
$cjoin = apply_filters_ref_array( 'comment_feed_join', array( '', &$this ) );