This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| include_once("${_SERVER['DOCUMENT_ROOT']}/wp-config.php"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Remove Update Nag | |
| Description: Remove WordPress update nag as not needed | |
| */ | |
| add_action('after_setup_theme','remove_core_updates'); | |
| function remove_core_updates() | |
| { | |
| if(! current_user_can('update_core')){return;} |
OlderNewer