Exemple #1
0
/**
 * Display the feed GUID for the current comment.
 *
 * @package WordPress
 * @subpackage Feed
 * @since unknown
 */
function comment_guid()
{
    echo get_comment_guid();
}
Exemple #2
0
/**
 * Display the feed GUID for the current comment.
 *
 * @since 2.5.0
 *
 * @param int|object $comment_id Optional comment object or id. Defaults to global comment object.
 */
function comment_guid($comment_id = null)
{
    echo esc_url(get_comment_guid($comment_id));
}
Exemple #3
0
/**
 * Display the feed GUID for the current comment.
 *
 * @package WordPress
 * @subpackage Feed
 * @since unknown
 *
 * @param int|object $comment_id Optional comment object or id. Defaults to global comment object.
 */
function comment_guid($comment_id = null)
{
    echo get_comment_guid($comment_id);
}