Skip to content

Instantly share code, notes, and snippets.

@jdevalk
Last active December 23, 2015 12:29
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 jdevalk/6635587 to your computer and use it in GitHub Desktop.
Save jdevalk/6635587 to your computer and use it in GitHub Desktop.
How to die(); without NextGen Gallery annoying you with more output.
<?php
/**
* Prevent stupid plugins from running shutdown scripts when we're obviously not outputting HTML.
*/
function really_die() {
global $wp_filter;
unset( $wp_filter['wp_footer'], $wp_filter['shutdown'] );
$wp_filter['wp_footer'] = 1;
die();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment