Skip to content

Instantly share code, notes, and snippets.

@alanef
Last active December 30, 2021 14:24
Show Gist options
  • Select an option

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

Select an option

Save alanef/6138ffa76f8abdfa1027a63f6005770e to your computer and use it in GitHub Desktop.
<?php
//* Do NOT include the opening php tag shown
add_filter(
'wfea_cal_event_extra_options',
function ( $options ) {
$title = get_the_title();
if (preg_match('/securing/i',$title) ) {
$options['backgroundColor'] = 'red';
$options['borderColor'] = 'black';
$options['textColor'] = 'white';
} else if (preg_match('/A Test/i',$title) ) {
$options['backgroundColor'] = 'green';
$options['borderColor'] = 'black';
$options['textColor'] = 'yellow';
}
return $options;
},
10,
1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment