Skip to content

Instantly share code, notes, and snippets.

@gabbsmo
Last active December 11, 2015 16:18
Show Gist options
  • Save gabbsmo/4626226 to your computer and use it in GitHub Desktop.
Save gabbsmo/4626226 to your computer and use it in GitHub Desktop.
<?php
add_action( 'admin_init', 'remove_links_manager' );
function remove_links_manager(){
$role = get_role( 'author' );
$role->remove_cap( 'manage_links' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment