wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



comment_author_ip › WordPress Function

Desde0.71
Obsoleton/a
comment_author_ip ( $comment_id = 0 )
Parâmetros:
  • (int|WP_Comment) $comment_id Optional. WP_Comment or the ID of the comment for which to print the author's IP address. Default current comment.
    Required: No
    Padrão:
Definido em:
Codex:
Log de mudanças:
  • 4.4.0

Displays the IP address of the author of the current comment.



Fonte

function comment_author_IP( $comment_id = 0 ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	echo esc_html( get_comment_author_IP( $comment_id ) );
}