Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Created November 4, 2013 11:55
Show Gist options
  • Save aderaaij/7301504 to your computer and use it in GitHub Desktop.
Save aderaaij/7301504 to your computer and use it in GitHub Desktop.
Add theme edit capabilities for shop manager role (woocommerce)
<?php
// get the the role object
$role_object = get_role( 'shop_manager' );
// add $cap capability to this role object
$role_object->add_cap( 'edit_theme_options' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment