pp_create_group()

Table of Contents
/**
 * Create a new Permission Group

 * @param array group_vars_arr :
 *   - group_name
 *   - group_description (optional)
 *   - metagroup_type (optional, for internal use)
 * @return int ID of new group
 */
function pp_create_group ($group_vars_arr)

Example usage #

$group_id = pp_create_group( 'group_name' => 'Cool Group', 'group_description' => 'Users who are cool' );

Notes #

The metagroup_type parameter is used internally (wp_role for auto-created WordPress role groups and rvy_notice for PublishPress Revisions Monitor groups). External usage of this parameter is not expected nor currently supported.