Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. //Add capabilities to author, so he/she can edit...
  2. function add_theme_caps() {
  3. // gets the author role
  4. $role = get_role( 'author' );
  5. $role->add_cap( 'edit_pages' );
  6. $role->add_cap( 'edit_published_pages' );
  7. $role->add_cap( 'edit_posts' );
  8. $role->add_cap( 'edit_others_posts' );
  9. $role->add_cap( 'publish_posts' );
  10. $role->add_cap( 'publish_pages' );
  11. $role->add_cap( 'edit_published_posts' );
  12. $role->add_cap( 'edit_published_pages' );
  13. }
  14. add_action( 'admin_init', 'add_theme_caps');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement