mc_insert_author_data - joedolson/my-calendar GitHub Wiki
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$eArray to hold event template tags.object$eventEvent object.
Returns
array Template tag array.
Files
apply_filters( 'mc_insert_author_data', $e, $event )