This filter is documented in wp-includes/comment-template.php
Ce filtre est documenté dans wp-includes/comment-template.php
$comment->comment_content, $comment, array(
Sortie :
add_filter('comment_text', 'make_links_clickable_in_comments');
function make_links_clickable_in_comments($comment_text) {
$comment_text = make_clickable($comment_text);
$allowed = array('a' => array('href' => array()), 'br' => array());
return wp_kses_post($comment_text);
}
Chargement des actualités...