pingback_ping_source_uri() WordPress Function

The pingback_ping_source_uri() function is used to trackback the URI of the post or comment that is being pinged. This function is used by the WordPress trackback system.

pingback_ping_source_uri( string $source_uri ) #

Default filter attached to pingback_ping_source_uri to validate the pingback’s Source URI.


Description

Top ↑

See also


Top ↑

Parameters

$source_uri

(string)(Required)


Top ↑

Return

(string)


Top ↑

Source

File: wp-includes/comment.php

function pingback_ping_source_uri( $source_uri ) {
	return (string) wp_http_validate_url( $source_uri );
}


Top ↑

Changelog

Changelog
VersionDescription
3.5.1Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More