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 $e Array of values to be used in template tags.
  • object $event Event object.

Returns

array Array of template tags.

Files

apply_filters( 'mc_filter_shortcodes', $e, $event )

← All Hooks