Periodically when you login to WordPress you will receive an email verification notice. While this notice does serve a valid security purpose, for more advanced users it truly is a nag! It's a good idea for WordPress beginners to leave this "Nag" in-place because it reminds them to keep their email associated with the site's Admin login up to date. Many casual users … [Read more...] about Disable WordPress Admin Email Nag
WordPress Core
WordPress Multisite Plugin Integrations
Adding the following code snippets to your Multisite wp-config.php will allow the specific plugin to function properly when Network Activated. Akismet /** Define WordPress.com API Key */ define('WPCOM_API_KEY','9ab1da1a259d'); Backup Buddy /* Network Integration for Backup Buddy */ define( 'PB_BACKUPBUDDY_MULTISITE_EXPERIMENT', true ); … [Read more...] about WordPress Multisite Plugin Integrations
Restrict WordPress Admin Menu Items Based on Username
Add the following code to your WordPress theme's function.php file, or a functionality plugin to restrict WordPress Admin Menu Items by Username. … [Read more...] about Restrict WordPress Admin Menu Items Based on Username
Disable WordPress Plugin Deactivation
Add the following code to your WordPress theme's function.php file, or a functionality plugin. … [Read more...] about Disable WordPress Plugin Deactivation
WordPress 4.8 Text Widget Strips Code
WordPress 4.8 comes with some interesting new features and Widgets but also with a major bug that will frustrate webmasters. While the new Image, video, and audio widgets work fine, the new Text Widget has a knack for ruining some types of code - like stripping JScript from newsletter subscription forms. Already Upgraded to WordPress 4.8? If you have already … [Read more...] about WordPress 4.8 Text Widget Strips Code
Customize the WordPress Login Logo
Add the following code to your WordPress theme's function.php file, or a functionality plugin to to customize the WordPress Login Logo … [Read more...] about Customize the WordPress Login Logo
Disable Submenus from the WordPress Admin Panel
Add the following code to your WordPress theme's function.php file, or a functionality plugin to remove sub-menus from the WP admin menu. … [Read more...] about Disable Submenus from the WordPress Admin Panel
Allow Shortcodes in Widgets and Excerpts
Add the following code to your WordPress theme's function.php file, or a functionality plugin to allow Shortcodes in Widgets and Excerpts … [Read more...] about Allow Shortcodes in Widgets and Excerpts
Disable Top-Level Menus from the WordPress Admin Bar
Add the following code to your WordPress theme's function.php file, or a functionality plugin. … [Read more...] about Disable Top-Level Menus from the WordPress Admin Bar
Remove Default Widgets from the WordPress Dashboard
Add the following code to your WordPress theme's function.php file, or a functionality plugin to remove the default widgets from the WordPress dashboard. … [Read more...] about Remove Default Widgets from the WordPress Dashboard