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 2225
$commentdata['comment_content'] = apply_filters( 'pre_comment_content', $commentdata['comment_content'] );

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

wp-admin/includes/ajax-actions.php 1348
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-admin/includes/ajax-actions.php 1349
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 2636
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 2650
remove_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 3754
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/comment.php 3755
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/default-filters.php 158
add_filter( $filter, 'convert_invalid_entities' );
wp-includes/default-filters.php 159
add_filter( $filter, 'balanceTags', 50 );
wp-includes/default-filters.php 312
add_filter( 'pre_comment_content', 'wp_rel_ugc', 15 );
wp-includes/kses.php 2545
add_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/kses.php 2547
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/kses.php 2577
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/kses.php 2578
remove_filter( 'pre_comment_content', 'wp_filter_kses' );