comment_author_ip

函数
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:
定义位置
相关方法
comment_authorget_comment_author_ipcomment_author_linkcomment_author_emailcomment_author_url
引入
0.71
弃用
-

comment_author_ip是用来显示评论作者的IP地址的。它不需要任何参数,只需输出评论作者的IP地址。

显示当前评论的作者的IP地址。

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

常见问题

FAQs
查看更多 >