Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Forked from JiveDig/functions.php
Last active July 7, 2016 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save pippinsplugins/ecd482819580e3f5f538 to your computer and use it in GitHub Desktop.
Save pippinsplugins/ecd482819580e3f5f538 to your computer and use it in GitHub Desktop.
<?php
function change_author_capabilities() {
$role = get_role( 'shop_vendor' ) ;
$role->add_cap( 'delete_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