Custom role
<?php
add_action('init', function () {
global $wp_rewrite;
$wp_rewrite->author_base = _x('auteur', 'slug/url', 'ceramicnature');
$wp_rewrite->search_base = _x('zoeken', 'slug/url', 'ceramicnature');
$wp_rewrite->comments_base = _x('reacties', 'slug/url', 'ceramicnature');
$wp_rewrite->flush_rules();
global $wp_roles;
$wp_roles->roles['customer']['name'] = __('Shop Partner', 'ceramicnature');
$wp_roles->role_names['customer'] = __('Shop Partner', 'ceramicnature');
add_role('distribution_partner', __('Distribution Partner', 'ceramicnature'), array(
'read' => false,
'edit_posts' => false,
'delete_posts' => false,
));
add_role('chain_partner', __('Chain Partner', 'ceramicnature'), array(
'read' => false,
'edit_posts' => false,
'delete_posts' => false,
));
});