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
See also
Parameters
- $source_uri
(string)(Required)
Return
(string)
Source
File: wp-includes/comment.php
function pingback_ping_source_uri( $source_uri ) { return (string) wp_http_validate_url( $source_uri ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.5.1 | Introduced. |