Code-Snippets-Functions/Execute a function on a child site/WP Rocket/disable-clear-cache-message.txt
2023-09-19 12:06:07 -06:00

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 );