mc_recurring_events - joedolson/my-calendar GitHub Wiki
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$outputHTML output of events to shown. Default empty string.array$resultsArray of related event objects.
Files
apply_filters( 'mc_recurring_events', '', $results )