Skip to content

Instantly share code, notes, and snippets.

@cricmania
cricmania / Disable Theme And Plugin Editor
Created April 5, 2014 09:04
Disable Theme And Plugin Editor In WordPress
define( 'DISALLOW_FILE_EDIT', true );
@cricmania
cricmania / Hide Plugins Directory
Last active August 29, 2015 13:58
Hide Plugins Directory
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# Prevents directory listing
IndexIgnore *
# END WordPress
@cricmania
cricmania / gist:9989279
Created April 5, 2014 08:54
Remove/Hide WordPress Version
<!--?php remove_action(‘wp_head’, ’wp_generator’); ?-->