Filters the comment author's email for display.
$comment_author_email, $comment->comment_ID
Sortie :
@param string $comment_author_email The comment author's email address. @param string $comment_id The comment ID as a numeric string.
// Modifier la valeur avec le filtre 'author_email'
add_filter('author_email', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($comment_author_email) {
// Modifier la valeur
return $comment_author_email;
}
Chargement des actualités...