Skip to content

Instantly share code, notes, and snippets.

@websupporter
Created March 5, 2017 10: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 websupporter/89a7523938cd44bec1de1ede063c8ada to your computer and use it in GitHub Desktop.
Save websupporter/89a7523938cd44bec1de1ede063c8ada to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Deactivate WordPress
* Author: David Remer
* Description: Do use with care. Actually: Do not use!
**/
function deactivate_wordpress() {
remove_action( 'all', 'deactivate_wordpress' );
wp_die( 'WordPress wurde deaktiviert.' );
}
add_action( 'all', 'deactivate_wordpress' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment