Skip to content

Instantly share code, notes, and snippets.

@jgalea
Last active January 31, 2020 10:47
Show Gist options
  • Save jgalea/5982522 to your computer and use it in GitHub Desktop.
Save jgalea/5982522 to your computer and use it in GitHub Desktop.
Creating a custom role in WordPress
<?php
$result = add_role( 'advanced_contributor', 'Advanced Contributor', array(
'read' => true, // True allows that capability
'edit_posts' => true,
'delete_posts' => false, // Use false to explicitly deny
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment