get_to_ping
Filters the list of URLs yet to ping for the given post.
Description
Parameters (1)
- 0. $to_ping (array)
- List of URLs yet to ping.
Usage
- To run the hook, copy the example below.
- $to_ping = apply_filters( 'get_to_ping', $to_ping );
- if ( !empty( $to_ping ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the get_to_ping callback
- function filter_get_to_ping( $to_ping ) {
- // make filter magic happen here...
- return $to_ping;
- };
- // add the filter
- add_filter( 'get_to_ping', 'filter_get_to_ping', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'get_to_ping', 'filter_get_to_ping', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/post.php
- return apply_filters( 'get_to_ping', $to_ping );