Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davoraltman/2e26f1384b719b0669dea1195b221cfd to your computer and use it in GitHub Desktop.
Save davoraltman/2e26f1384b719b0669dea1195b221cfd to your computer and use it in GitHub Desktop.
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