get_commentdata

函数
get_commentdata ( $comment_ID, $no_cache = 0, $include_unapproved = false )
参数
  • (int) $comment_ID The ID of the comment
    Required:
  • (int) $no_cache Whether to use the cache (cast to bool)
    Required:
  • (bool) $include_unapproved Whether to include unapproved comments
    Required:
    Default: false
返回值
  • (array) The comment data
相关
  • get_comment()
定义位置
相关方法
get_comment_dateget_commentget_comment_metaget_comment_idget_metadata
引入
0.71
弃用
2.7.0

get_commentdata: 这个函数用来检索评论的数据,是一个关联数组。评论数据包括诸如评论作者、电子邮件、网站、评论内容、评论类型等信息。

检索关于评论$comment_ID的评论数据数组。

function get_commentdata( $comment_ID, $no_cache = 0, $include_unapproved = false ) {
	_deprecated_function( __FUNCTION__, '2.7.0', 'get_comment()' );
	return get_comment($comment_ID, ARRAY_A);
}

常见问题

FAQs
查看更多 >