Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Add the Event Scheduled to the Event Status if no value for it is exists.
/**
* Add the Event Scheduled to the Event Status if no value for it is exists.
*/
add_filter( 'tribe_json_ld_event_object', function ( $data, $args, $post ) {
if ( ! empty( $data->eventStatus ) ) {
return $data;
}
$data->eventStatus = 'https://schema.org/EventScheduled';
return $data;
}, 1000, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment