wp_heartbeat_set_suspension() WordPress Function
The wp_heartbeat_set_suspension() function allows you to temporarily suspend the heartbeat for a specific user. This can be useful if you want to prevent the heartbeat from firing while the user is working on something, to avoid any potential conflicts.
wp_heartbeat_set_suspension( array $settings ) #
Disables suspension of Heartbeat on the Add/Edit Post screens.
Contents
Parameters
- $settings
(array)(Required)An array of Heartbeat settings.
Return
(array) Filtered Heartbeat settings.
Source
File: wp-admin/includes/misc.php
function wp_heartbeat_set_suspension( $settings ) {
global $pagenow;
if ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) {
$settings['suspension'] = 'disable';
}
return $settings;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 3.8.0 | Introduced. |