Skip to content

Instantly share code, notes, and snippets.

@alanef
Last active March 18, 2024 19:01
Show Gist options
  • Save alanef/d08c68265b2e01bf355eab4e2b74744a to your computer and use it in GitHub Desktop.
Save alanef/d08c68265b2e01bf355eab4e2b74744a to your computer and use it in GitHub Desktop.
<?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