Skip to content

Instantly share code, notes, and snippets.

@ncyhere
Created October 6, 2019 03:56
Show Gist options
  • Save ncyhere/4c0071c0b27b2d074178c2e93f7a3430 to your computer and use it in GitHub Desktop.
Save ncyhere/4c0071c0b27b2d074178c2e93f7a3430 to your computer and use it in GitHub Desktop.
Gold member user role
<?php
$result = add_role(
'basic_reader',
__( 'Basic Reader' ),
array(
'$role = get_role( 'basic_reader' ),
$role->add_cap( 'install_plugins' ),
$role = get_role( 'basic_reader' ),
$role->remove_cap( 'read' ),
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment