Created
April 26, 2017 14:08
-
-
Save barryhughes/1a01b08ec492daed561b35d1399e9e55 to your computer and use it in GitHub Desktop.
Enable support for multiple venues (in TEC / CE ~4.4.x)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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