Skip to content

Instantly share code, notes, and snippets.

@barryhughes
Created April 26, 2017 14:08
Show Gist options
  • Save barryhughes/1a01b08ec492daed561b35d1399e9e55 to your computer and use it in GitHub Desktop.
Save barryhughes/1a01b08ec492daed561b35d1399e9e55 to your computer and use it in GitHub Desktop.
Enable support for multiple venues (in TEC / CE ~4.4.x)
<?php
/**
* Enable support for multiple venues.
*/
add_filter( 'tribe_events_linked_post_type_args', function( $args ) {
$args['allow_multiple'] = true;
return $args;
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment