Disable theme, plugin editor and plugin, core updates
Adding the first line to your wordpress wp-config.php file will disable theme and plugin editor. Adding the second line to your wordpress wp-config.php file will disable plugin and core updates.
read moreHide update nag within the admin
Adding this snippet to the functions.php of your wordpress theme will hide the update nag within the wordpress admin.
read moreRemove unneeded images / thumbnail sizes
Adding some or all of these lines of code to the functions.php of your wordpress theme will effectively remove some of the default images sizes that may be unneeded. Make sure to include both the _w _h for width and height,
read morethis months featured snippets
Exclude pages from admin pages list by ID
Adding this snippet to the functions.php of your wordpress theme will let you remove pages from the admin pages list. Just update the list of page IDs within the array.
read moreProtect wordpress against malicious URL requests
Fantastic snippet from Perishable Press this snippet is great for the security to protect wordpress against malicious URL requests. I have attached a zip file with a download of this snippet as a plugin. Just ftp the single php file to your plugins folder and active as normal.
read moreDisable dragging of metaboxes within admin
Adding this snippet to the functions.php of your wordpress theme will disable all dragging of metaboxes within the admin. Please note that this includes dashboard widgets as well.
read moreSet the content type email from text/plain to text/html
Adding this snippet to the functions.php of your wordpress theme will let you set the content type of email from text/plain to text/html.
read moreRemove support for specific post type features
Adding this snippet to the functions.php of your wordpress theme will remove support for the specific features bellow from specified post types. Change the word ‘post’ to anything you like including a custom post type name or the default post, page.
read more













