Last active
October 6, 2019 03:48
-
-
Save ncyhere/f4ced3d2485062d96f06cd496db941ef to your computer and use it in GitHub Desktop.
Create a Gold Member user role
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @snippet Create a New User Role | |
* @author Ncy Design https://wordpress.ncy.design | |
* @compatible WooCommerce 3.7.0 | |
*/ | |
$result = add_role( | |
'gold_member', | |
__( 'Gold Member' ), | |
array( | |
'read' => true, | |
'edit_posts' => false, | |
'delete_posts' => false, | |
) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment