WordPress技巧如何显示评论作者ip地址

2024年05月30日 建站教程

函数原型:

comment_author_IP( int|WP_Comment $comment_id )

//$comment_id,WP_Comment或要打印作者IP地址的评论的ID。默认当前评论。

函数源码:

function comment_author_IP( $comment_id = 0 ) {
  echo esc_html( get_comment_author_IP( $comment_id ) );
}

调用方法:

评论作者ip地址: <?php comment_author_IP(); ?>

本文链接:http://so.lmcjl.com/news/5604/

展开阅读全文
相关内容