add_ping filter-hook . WP 2.0.0
Filters the new ping URL to add for the given post.
Usage
add_filter( 'add_ping', 'filter_function_name_9335' ); function filter_function_name_9335( $new ){ // filter... return $new; }
- $new(string)
- New ping URL to add.
Changelog
Since 2.0.0 | Introduced. |
Where the hook is called
add_ping
wp-includes/post.php 5013
$new = apply_filters( 'add_ping', $new );