WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
5737 |
|
5738 | /** |
5739 | * Filter the pingback source URI. |
5740 | * |
5741 | * @since 3.6.0 |
5742 | * |
5743 | * @param string $pagelinkedfrom URI of the page linked from. |
5744 | * @param string $pagelinkedto URI of the page linked to. |
5745 | */ |
5746 | $pagelinkedfrom = apply_filters( 'pingback_ping_source_uri', $pagelinkedfrom, $pagelinkedto ); |
5747 |
|
5748 | if ( ! $pagelinkedfrom ) |
5749 | return $this->pingback_error( 0, __( 'A valid URL was not provided.' ) ); |
5750 |
|
5751 | // Check if the page linked to is in our site |
5752 | $pos1 = strpos($pagelinkedto, str_replace(array('http://www.','http://','https://www.','https://'), '', get_option('home'))); |
5753 | if ( !$pos1 ) |
5754 | return $this->pingback_error( 0, __( 'Is there no link to us?' ) ); |
5755 |
|