Advertisement
BakerMan

Venues: add custom field support

Mar 6th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_action( 'init', 'add_custom_field_support_for_venues', 50 );
  2.  
  3. function add_custom_field_support_for_venues() {
  4.     add_post_type_support( TribeEvents::VENUE_POST_TYPE, 'custom-fields' );
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement