mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
193 B
Text
5 lines
193 B
Text
function wpmp_heartbeat_settings( $settings ) {
|
|
$settings['interval'] = 60; //Anything between 15-120
|
|
return $settings;
|
|
}
|
|
add_filter( 'heartbeat_settings', 'wpmp_heartbeat_settings' );
|