Skip to content

Instantly share code, notes, and snippets.

@gaintsev
Created February 24, 2015 07:16
Show Gist options
  • Save gaintsev/0a0eaaaa3ebe418b313e to your computer and use it in GitHub Desktop.
Save gaintsev/0a0eaaaa3ebe418b313e to your computer and use it in GitHub Desktop.
Wordpress detect activation plugin error
add_action('activated_plugin','save_error');
function save_error(){
update_option('plugin_error', ob_get_contents());
}
echo get_option('plugin_error');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment