Skip to content

Instantly share code, notes, and snippets.

@wpsmith
Created August 17, 2020 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpsmith/db4f5fe63409ac66fcef02c18f970cd8 to your computer and use it in GitHub Desktop.
Save wpsmith/db4f5fe63409ac66fcef02c18f970cd8 to your computer and use it in GitHub Desktop.
WP: Remove the WP Heartbeat
<?php
add_action( 'init', 'stop_heartbeat', 1 );
/**
* Stop the heartbeat altogether.
*/
function stop_heartbeat() {
wp_deregister_script( 'heartbeat' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment