pre_comment_content хук-фильтрWP 1.5.0

Filters the comment content before it is set.

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

add_filter( 'pre_comment_content', 'wp_kama_pre_comment_content_filter' );

/**
 * Function for `pre_comment_content` filter-hook.
 * 
 * @param string $comment_content The comment content.
 *
 * @return string
 */
function wp_kama_pre_comment_content_filter( $comment_content ){

	// filter...
	return $comment_content;
}
$comment_content(строка)
The comment content.

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

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

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

wp_filter_comment()
pre_comment_content
wp-includes/comment.php 2124
$commentdata['comment_content'] = apply_filters( 'pre_comment_content', $commentdata['comment_content'] );

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

wp-admin/includes/ajax-actions.php 1345
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-admin/includes/ajax-actions.php 1346
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 2510
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 2524
remove_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 3619
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/comment.php 3620
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/default-filters.php 146
add_filter( $filter, 'convert_invalid_entities' );
wp-includes/default-filters.php 147
add_filter( $filter, 'balanceTags', 50 );
wp-includes/default-filters.php 301
add_filter( 'pre_comment_content', 'wp_rel_ugc', 15 );
wp-includes/kses.php 2221
add_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/kses.php 2223
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/kses.php 2253
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/kses.php 2254
remove_filter( 'pre_comment_content', 'wp_filter_kses' );