mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://github.com/wp-media/wp-rocket-helpers/blob/master/various/wp-rocket-remove-toolbar-menu/wp-rocket-remove-toolbar-menu.php https://gist.github.com/Tabrisrp/839d9aab429e4e09bdba369d73837399
3 lines
116 B
Text
3 lines
116 B
Text
add_action( 'admin_bar_menu', function($wp_admin_bar) {
|
|
$wp_admin_bar->remove_node('wp-rocket');
|
|
}, PHP_INT_MAX );
|