Skip to content

Instantly share code, notes, and snippets.

@ncyhere
Last active October 6, 2019 03:48
Show Gist options
  • Save ncyhere/f4ced3d2485062d96f06cd496db941ef to your computer and use it in GitHub Desktop.
Save ncyhere/f4ced3d2485062d96f06cd496db941ef to your computer and use it in GitHub Desktop.
Create a Gold Member user role
<?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