Created
September 4, 2020 10:06
-
-
Save christophwessels/0ba478d23c380e22c525486dc67a4011 to your computer and use it in GitHub Desktop.
Remove WP Rocket from Admin Bar Menu
This file contains 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
add_action( 'admin_bar_menu', function() { | |
remove_action( 'admin_bar_menu', 'rocket_admin_bar', PHP_INT_MAX ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment