Advertisement
eventsmanager

Exclude specific from WPFC events category ddm

Jun 8th, 2017
1,210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. /**
  2.  * This snippet will exclude or remove events category from WP FullCalendar Events Categories Dropdown
  3.  *
  4.  * Replace 9 or 30 with your Events Category ID you've wanted to remove or exclude from the list
  5.  */
  6. function exclude_category($taxonomy_args, $taxonomy){
  7.  
  8.  $taxonomy_args['exclude'] = '9,30';
  9.  
  10.  return $taxonomy_args;
  11. }
  12. add_filter('wpmfc_calendar_taxonomy_args','exclude_category',10,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement