Skip to content

mc_insert_author_data

Joe Dolson edited this page May 15, 2026 · 4 revisions

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

Auto-generated Example

add_filter(
   'mc_insert_author_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_insert_author_data', $e, $event )

← All Hooks

Clone this wiki locally