Advertisement
GochiSiyan

prevent publish

Mar 24th, 2021
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function remove_author_publish_posts(){
  2.  
  3. // $wp_roles is an instance of WP_Roles.
  4. global $wp_roles;
  5. $wp_roles->remove_cap( 'author', 'publish_posts' );
  6. }
  7.  
  8. add_action( 'init', 'remove_author_publish_posts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement