Skip to content

Instantly share code, notes, and snippets.

@remkus
Created December 6, 2012 22:08
Show Gist options
  • Select an option

  • Save remkus/4228946 to your computer and use it in GitHub Desktop.

Select an option

Save remkus/4228946 to your computer and use it in GitHub Desktop.
Remove Jetpack menu for lesser gods
add_action( 'admin_menu', 'fst_remove_jetpack_page', 999 );
function fst_remove_jetpack_page( ) {
if ( class_exists( 'Jetpack' ) && !current_user_can( 'manage_options' ) ) {
remove_menu_page( 'jetpack' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment