Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function remove_author_publish_posts(){
- // $wp_roles is an instance of WP_Roles.
- global $wp_roles;
- $wp_roles->remove_cap( 'author', 'publish_posts' );
- }
- add_action( 'init', 'remove_author_publish_posts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement