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' ); /** * Function for `comment_feed_join` filter-hook. * * @param string $cjoin The JOIN clause of the query. * * @return string */ function wp_kama_comment_feed_join_filter( $cjoin ){ // filter... return $cjoin; }
- $cjoin(строка)
- The JOIN clause of the query.
Список изменений
С версии 2.2.0 | Введена. |
Где вызывается хук
comment_feed_join
wp-includes/class-wp-query.php 2719
$cjoin = apply_filters_ref_array( 'comment_feed_join', array( $cjoin, &$this ) );
wp-includes/class-wp-query.php 3309
$cjoin = apply_filters_ref_array( 'comment_feed_join', array( '', &$this ) );