Skip to content

Instantly share code, notes, and snippets.

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 JiveDig/00eaa78d0b44e7befde4 to your computer and use it in GitHub Desktop.
Save JiveDig/00eaa78d0b44e7befde4 to your computer and use it in GitHub Desktop.
All Easy Digital Downloads shop vendors to delete products/downloads
<?php
function change_author_capabilities() {
$role = get_role( 'shop_vendor' ) ;
$role->add_cap( 'delete_published_products' );
}
add_action( 'admin_init', 'change_author_capabilities' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment