Skip to content

Instantly share code, notes, and snippets.

@wpgaurav
Created October 16, 2020 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpgaurav/35854735b80df6707aa91ff9df3691ec to your computer and use it in GitHub Desktop.
Save wpgaurav/35854735b80df6707aa91ff9df3691ec to your computer and use it in GitHub Desktop.
Disable WordPress.com Toolbar in WordPress.com Business and Ecommerce Plans
<?php
function disable_wpcomtoolbar ( $modules ) {
if ( isset( $modules['masterbar'] ) ) {
unset( $modules['masterbar'] );
}
return $modules;
}
add_filter( 'jetpack_get_available_modules', 'disable_wpcomtoolbar' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment