Last active
January 2, 2022 09:12
-
-
Save remyperona/839d9aab429e4e09bdba369d73837399 to your computer and use it in GitHub Desktop.
Remove WP Rocket Admin Bar Menu
Another option:
add_action( 'admin_bar_menu', function($wp_admin_bar) {
$wp_admin_bar->remove_node('wp-rocket');
}, PHP_INT_MAX );
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I add this code in functions.php file and not working for me. How can I add this code for remove wp rocket admin bar menu?