get_to_ping filter-hook . WP 2.0.0
Filters the list of URLs yet to ping for the given post.
Usage
add_filter( 'get_to_ping', 'filter_function_name_1440' ); function filter_function_name_1440( $to_ping ){ // filter... return $to_ping; }
- $to_ping(array)
- List of URLs yet to ping.
Where the hook is called
get_to_ping
wp-includes/post.php 4622
return apply_filters( 'get_to_ping', $to_ping );