wpseek.com
WordPress开发者和主题制作者的搜索引擎



comment_author_ip › WordPress Function

Since0.71
已弃用n/a
comment_author_ip ( $comment_id = 0 )
参数:
  • (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
    默认:
定义在:
文档:
Change Log:
  • 4.4.0

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



源码

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