get_to_ping хук-фильтр . WP 2.0.0
Filters the list of URLs yet to ping for the given post.
Использование
add_filter( 'get_to_ping', 'filter_function_name_7428' ); function filter_function_name_7428( $to_ping ){ // filter... return $to_ping; }
- $to_ping(строка[])
- List of URLs yet to ping.
Список изменений
С версии 2.0.0 | Введена. |
Где вызывается хук
get_to_ping
wp-includes/post.php 5112
return apply_filters( 'get_to_ping', $to_ping );