comment_feed_where хук-фильтрWP 2.2.0

Filters the WHERE clause of the comments feed query before sending.

Использование

add_filter( 'comment_feed_where', 'wp_kama_comment_feed_where_filter' );

/**
 * Function for `comment_feed_where` filter-hook.
 * 
 * @param string $cwhere The WHERE clause of the query.
 *
 * @return string
 */
function wp_kama_comment_feed_where_filter( $cwhere ){

	// filter...
	return $cwhere;
}
$cwhere(строка)
The WHERE clause of the query.

Список изменений

С версии 2.2.0 Введена.

Где вызывается хук

WP_Query::get_posts()
comment_feed_where
wp-includes/class-wp-query.php 2845
$cwhere = apply_filters_ref_array( 'comment_feed_where', array( $cwhere, &$this ) );
wp-includes/class-wp-query.php 3471
$cwhere = apply_filters_ref_array( 'comment_feed_where', array( "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'", &$this ) );

Где используется хук в WordPress

Использование не найдено.