09 Feb Remove WordPress Heartbeat
Posted at 19:33h
in Wordpress
// remove heartbeat
add_action( 'init', 'stop_heartbeat', 1 );
function stop_heartbeat() {
wp_deregister_script('heartbeat');
}