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 |
---|---|
6257 |
|
6258 | /** |
6259 | * Filters the pingback source URI. |
6260 | * |
6261 | * @since 3.6.0 |
6262 | * |
6263 | * @param string $pagelinkedfrom URI of the page linked from. |
6264 | * @param string $pagelinkedto URI of the page linked to. |
6265 | */ |
6266 | $pagelinkedfrom = apply_filters( 'pingback_ping_source_uri', $pagelinkedfrom, $pagelinkedto ); |
6267 |
|
6268 | if ( ! $pagelinkedfrom ) |
6269 | return $this->pingback_error( 0, __( 'A valid URL was not provided.' ) ); |
6270 |
|
6271 | // Check if the page linked to is in our site |
6272 | $pos1 = strpos($pagelinkedto, str_replace(array('http://www.','http://','https://www.','https://'), '', get_option('home'))); |
6273 | if ( !$pos1 ) |
6274 | return $this->pingback_error( 0, __( 'Is there no link to us?' ) ); |
6275 |
|