wp_refresh_nonces

过滤钩子
apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id )
参数
  • (array) $response The Heartbeat response.
    Required:
  • (array) $data The $_POST data sent.
    Required:
  • (string) $screen_id The screen ID.
    Required:
定义位置
相关勾子
wp_preload_resourceswp_resource_hintswp_redirectwp_feed_optionswp_verify_nonce_failed
相关方法
wp_refresh_post_nonceswp_refresh_heartbeat_nonceswp_create_noncewp_refresh_post_lockwp_refresh_metabox_loader_nonceswp_verify_nonce
引入
4.3.0
弃用
-

wp_refresh_nonces:这是 WordPress 中的一个函数,它的作用是刷新页面中的 nonce 值。Nonce 是一个单次使用的令牌,用于验证某个请求是否合法。使用这个函数可以在页面中更新 nonce 的值,以保证请求的安全性。

过滤发送至”新建/编辑文章”屏幕的非代码。

$response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id );

常见问题

FAQs
查看更多 >