mc_filter_shortcodes - joedolson/my-calendar GitHub Wiki
Filter all template tags after generation.
Auto-generated Example
add_filter(
'mc_filter_shortcodes',
function(
array $e,
object $event
) {
// Your code here.
return $e;
},
10,
2
);
Parameters
array$eArray of values to be used in template tags.object$eventEvent object.
Returns
array Array of template tags.
Files
apply_filters( 'mc_filter_shortcodes', $e, $event )