Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iamgabrielma
Created June 17, 2019 07:10
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 iamgabrielma/0bffc2e53b1b81629accb621378f95d9 to your computer and use it in GitHub Desktop.
Save iamgabrielma/0bffc2e53b1b81629accb621378f95d9 to your computer and use it in GitHub Desktop.
Disables WPCOM masterbar
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