Creating a recurring Event; the Event will happen daily, 10 times | Apis Handbook Handbook | TEC Tech Docs

PHOTO EMBED

Thu Sep 12 2024 00:39:38 GMT+0000 (Coordinated Universal Time)

Saved by @bounty31 #php

$args = [ \
    'title' => 'Test Recurring Event', \
    'status' => 'publish', \
    'start_date' => '2022-09-01 14:00:00',  \
    'end_date' => '2022-09-01 17:00:00',  \
    'timezone' => 'America/New_York', \
    'recurrence' => 'RRULE:FREQ=DAILY;COUNT=10', \
];
$recurring_event = tribe_events()->set_args( $args )->create()->ID;
content_copyCOPY

https://docs.theeventscalendar.com/apis/custom-tables/events/