Skip to content

Instantly share code, notes, and snippets.

@nmec
Last active December 10, 2015 12:28
Show Gist options
  • Save nmec/4433881 to your computer and use it in GitHub Desktop.
Save nmec/4433881 to your computer and use it in GitHub Desktop.
Prevents generation of 'Hello World' and 'Sample Page' in WordPress, just drop this file in your wp-content folder before running the installation.
<?php
/**
* Prevents generation of 'Hello World' and 'Sample Page'.
* @link http://wordpress.stackexchange.com/a/71867/8872
*/
function wp_install_defaults() {
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment