Last active
March 18, 2024 19:01
-
-
Save alanef/d08c68265b2e01bf355eab4e2b74744a to your computer and use it in GitHub Desktop.
This file contains 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 | |
/** | |
* Plugin Name: Custom Code Snippets - Display Eventbrite | |
* Version: 1.0 | |
*/ | |
add_filter( 'wfea_cal_extra_options', | |
function ( $options ) { | |
$options['fullcalendar']['showNonCurrentDates'] = false; | |
return $options; | |
}, | |
10, | |
1 | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment