Skip to content

mc_filter_image_data

github-actions[bot] edited this page Jun 3, 2026 · 4 revisions

Filter template tag array and add image data. Runs before other template tags are created. Use mc_filter_shortcodes to modify existing template tags.

Auto-generated Example

add_filter(
   'mc_filter_image_data',
    function(
        array $e,
        object $event
    ) {
        // Your code here.
        return $e;
    },
    10,
    2
);

Parameters

  • array $e Array to hold event template tags.
  • object $event Event object.

Returns

array Template tag array.

Files

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

← All Hooks

Clone this wiki locally