Comment template functions These functions are meant to live inside of the WordPress loop.
$comment_id = 0
Sortie :
@param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to retrieve the author. @return string The comment author
// Utilisation de la fonction get_comment_author
$result = get_comment_author($comment_id = 0);
if ($result) {
// Votre logique ici
}
Chargement des actualités...