Skip to content

Instantly share code, notes, and snippets.

@radarin
Created January 26, 2019 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarin/90de9e215ce8a77a613b3a6d9846848c to your computer and use it in GitHub Desktop.
Save radarin/90de9e215ce8a77a613b3a6d9846848c to your computer and use it in GitHub Desktop.
Neue Benutzerrolle anlegen
<?php
add_role(
'entwurfsautor',
__( 'Entwurfsautor' ),
array(
'read' => true, // true allows this capability
'edit_posts' => true,
'delete_posts' => true,
'upload_files' => true,
'edit_published_posts' => true,
'delete_published_posts' => true,
'manage_categories' => true,
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment