heartbeat_nopriv_send
Filters Heartbeat Ajax response in no-privilege environments when no data is passed.
Использование
add_filter( 'heartbeat_nopriv_send', 'wp_kama_heartbeat_nopriv_send_filter', 10, 2 ); /** * Function for `heartbeat_nopriv_send` filter-hook. * * @param array $response The no-priv Heartbeat response. * @param string $screen_id The screen ID. * * @return array */ function wp_kama_heartbeat_nopriv_send_filter( $response, $screen_id ){ // filter... return $response; }
- $response(массив)
- The no-priv Heartbeat response.
- $screen_id(строка)
- The screen ID.
Список изменений
С версии 3.6.0 | Введена. |
Где вызывается хук
wp-admin/includes/ajax-actions.php 54
$response = apply_filters( 'heartbeat_nopriv_send', $response, $screen_id );
Где используется хук в WordPress
wp-includes/default-filters.php 481
add_filter( 'heartbeat_nopriv_send', 'wp_auth_check' );