Advertisement
BakerMan

Fix the organizer and venue slugs (don't translate them!)

Apr 3rd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_action( 'init', 'fix_tribe_venue_org_slugs', 11 );
  2.  
  3. function fix_tribe_venue_org_slugs() {
  4.     if ( ! class_exists( 'TribeEvents' ) ) return;
  5.     $tribe = TribeEvents::instance();
  6.     $tribe->postVenueTypeArgs['rewrite']['slug'] = 'venue';
  7.     $tribe->postOrganizerTypeArgs['rewrite']['slug'] = 'organizer';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement