get_comment_guid

函数
get_comment_guid ( $comment_id = null )
参数
  • (int|WP_Comment) $comment_id Optional comment object or ID. Defaults to global comment object.
    Required:
    Default: null
返回值
  • (string|false) GUID for comment on success, false on failure.
定义位置
相关方法
get_comment_idcomment_guidget_commentget_comment_timeget_comment_date
引入
2.5.0
弃用
-

get_comment_guid – 这个函数返回一个评论的唯一标识符。它通常是一个链接到评论的URL,并用于像RSS提要这样的事情。它把评论的ID作为一个参数。

检索当前评论的feed GUID。

function get_comment_guid( $comment_id = null ) {
	$comment = get_comment( $comment_id );

	if ( ! is_object( $comment ) ) {
		return false;
	}

	return get_the_guid( $comment->comment_post_ID ) . '#comment-' . $comment->comment_ID;
}

常见问题

FAQs
查看更多 >