Created
September 28, 2021 20:06
-
-
Save lelandf/f4f68d6875208af2308bdc93f842919d to your computer and use it in GitHub Desktop.
[TEC] Require event category on community events form
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 | |
add_filter( 'tribe_events_community_required_fields', function( $fields ) { | |
$fields[] = 'tax_input.tribe_events_cat'; | |
return $fields; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment