Skip to content

Instantly share code, notes, and snippets.

@ofernandolopes
Forked from woogist/functions.php
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save ofernandolopes/8889790291cc63b80296 to your computer and use it in GitHub Desktop.

Select an option

Save ofernandolopes/8889790291cc63b80296 to your computer and use it in GitHub Desktop.
WordPress - Remove Jetpack menu
function jeherve_delete_jetpack_menu() {
if ( ! current_user_can( 'manage_options' ) ) {
remove_menu_page( 'jetpack' );
}
}
add_action ( 'admin_menu', 'jeherve_delete_jetpack_menu', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment