mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Heartbeat API: first run, see #23216
git-svn-id: https://develop.svn.wordpress.org/trunk@23355 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2284,3 +2284,18 @@ function __checked_selected_helper( $helper, $current, $echo, $type ) {
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Default settings for heartbeat
|
||||
*
|
||||
* Outputs the nonce used in the heartbeat XHR
|
||||
*
|
||||
* @since 3.6.0
|
||||
*
|
||||
* @param array $settings
|
||||
* @return array $settings
|
||||
*/
|
||||
function wp_heartbeat_settings( $settings ) {
|
||||
$setting['nonce'] = wp_create_nonce( 'heartbeat-nonce' );
|
||||
return $setting;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user