Advertisement
GochiSiyan

remove capability

Nov 26th, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_action( 'init', function() {
  2. $roles = [
  3. 'editor',
  4. 'author'
  5. ];
  6.  
  7. $caps = array(
  8. 'publish_posts',
  9. 'publish_pages',
  10. );
  11.  
  12. foreach ( $roles as $role ) {
  13. $the_role = get_role($role);
  14. foreach ( $caps as $cap ) {
  15. $the_role->remove_cap( $cap );
  16. }
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement