Advertisement
BakerMan

Add author support for organizers/venues

Mar 28th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_action( 'init', 'add_author_support_orgs_venues' );
  2.  
  3. function add_author_support_orgs_venues() {
  4.     if ( ! class_exists( 'TribeEvents' ) ) return;
  5.     add_post_type_support( TribeEvents::VENUE_POST_TYPE, 'author' );
  6.     add_post_type_support( TribeEvents::ORGANIZER_POST_TYPE, 'author' );
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement