This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Change iCal description and title | |
*/ | |
function filter_ical_item( $item, $eventPost ) { | |
// Get the end time | |
$endTime = tribe_get_end_date($eventPost->ID, false, 'Hi'); | |
// Make sure it's a multi-day event |
NewerOlder