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



comment_guid › WordPress Function

Since2.5.0
已弃用n/a
comment_guid ( $comment_id = null )
参数:
  • (int|WP_Comment) $comment_id Optional comment object or ID. Defaults to global comment object.
    Required: No
    默认: null
定义在:
文档:

Displays the feed GUID for the current comment.



源码

function comment_guid( $comment_id = null ) {
	echo esc_url( get_comment_guid( $comment_id ) );
}