Skip to content

Instantly share code, notes, and snippets.

@shrinkray
Created December 9, 2019 22:33
Show Gist options
  • Select an option

  • Save shrinkray/1b066e1f6b54904517d139fede1827a2 to your computer and use it in GitHub Desktop.

Select an option

Save shrinkray/1b066e1f6b54904517d139fede1827a2 to your computer and use it in GitHub Desktop.
/**
* Add to remove the Heartbeat (missing) in Query Monitor
*/
add_filter( 'wpe_heartbeat_allowed_pages', function( $pages ) {
global $pagenow;
$pages[] = $pagenow;
return $pages;
});
/**
* Ref:
https://wordpress.org/support/topic/missing-dependencies-in-query-monitor-with-wp-auth-check-and-heatbeat-missing/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment