Remove the admin bar in WP Rocket on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_action( 'admin_bar_menu', function($wp_admin_bar) {
$wp_admin_bar->remove_node('wp-rocket');
}, PHP_INT_MAX );
Remove the admin bar in WP Rocket on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_action( 'admin_bar_menu', function($wp_admin_bar) {
$wp_admin_bar->remove_node('wp-rocket');
}, PHP_INT_MAX );
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.