Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chered/69283aa0488988e3ac8dff3d6744f030 to your computer and use it in GitHub Desktop.
Save chered/69283aa0488988e3ac8dff3d6744f030 to your computer and use it in GitHub Desktop.
function onboarding_remove_menu_items() {
if( !current_user_can( 'administrator' ) ):
remove_menu_page( 'edit.php?post_type=testimonial' );
endif;
}
add_action( 'admin_menu', 'onboarding_remove_menu_items' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment