Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save barryhughes/b907b8078d25fb2e8ac8b2d3b14b2d03 to your computer and use it in GitHub Desktop.
Save barryhughes/b907b8078d25fb2e8ac8b2d3b14b2d03 to your computer and use it in GitHub Desktop.
Setting custom capabilities for event category management (TEC 4.6.13)
<?php
add_filter( 'tribe_events_register_event_cat_type_args', function( $args ) {
$args['capabilities'] = [
'manage_terms' => 'manage_tribe_events_categories',
'edit_terms' => 'manage_tribe_events_categories',
'delete_terms' => 'manage_tribe_events_categories',
'assign_terms' => 'manage_tribe_events_categories',
];
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment