Skip to content

mc_recurring_events

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

For large lists of recurring events, recurring events are not shown by default.

Only runs if number of recurring events higher than mc_recurring_event_limit.

Auto-generated Example

add_filter(
   'mc_recurring_events',
    function(
        string $output,
        array $results
    ) {
        // Your code here.
        return $output;
    },
    10,
    2
);

Parameters

  • string $output HTML output of events to shown. Default empty string.
  • array $results Array of related event objects.

Files

apply_filters( 'mc_recurring_events', '', $results )

← All Hooks

Clone this wiki locally