Skip to content

Instantly share code, notes, and snippets.

@barryhughes
Created June 3, 2015 22:33
Show Gist options
  • Save barryhughes/f7cce65e5aa0c5a50a64 to your computer and use it in GitHub Desktop.
Save barryhughes/f7cce65e5aa0c5a50a64 to your computer and use it in GitHub Desktop.
/**
* Enable custom field support for organizer posts.
*
* @param array $args
* @return array
*/
function tribe_organizers_custom_field_support( $args ) {
$args['supports'][] = 'custom-fields';
return $args;
}
add_filter( 'tribe_events_register_organizer_type_args', 'tribe_organizers_custom_field_support' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment