Skip to content

Instantly share code, notes, and snippets.

@alanef
Created March 1, 2023 21:59
Show Gist options
  • Select an option

  • Save alanef/bccfd17a1501caa357901f240c1b2545 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/bccfd17a1501caa357901f240c1b2545 to your computer and use it in GitHub Desktop.
filter to add venue name to callist
add_filter('wfea_cal_list_event_extra_options', function($options) {
$post= get_post();
$venue= '';
if ( !empty($post->venue)) {
$venue = ' @ ' . $post->venue->name;
}
$options['title'] =$options['title'] . $venue;
return $options;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment