mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
4 lines
186 B
Text
4 lines
186 B
Text
// Remove the hook that displays the "clear cache" message.
|
|
add_action( 'admin_notices', function() {
|
|
remove_action( 'admin_notices', 'rocket_warning_plugin_modification' );
|
|
}, 1 );
|