Skip to content

Instantly share code, notes, and snippets.

@jamiemarsland
Created September 27, 2018 19:01
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 jamiemarsland/9efc01a21934977830d62d5054e4845e to your computer and use it in GitHub Desktop.
Save jamiemarsland/9efc01a21934977830d62d5054e4845e to your computer and use it in GitHub Desktop.
To add back the normal wordpress admin toolbar for wordpress.com users
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