We are having issues on out calendar where it displays the months using
$prev_date = new DateTime( str_replace(' ', ' 1, ', tribe_get_displayed_month() ));
$next_date = new DateTime( str_replace(' ', ' 1, ', tribe_get_displayed_month() ));
$this_month = new DateTime( str_replace(' ', ' 1, ', tribe_get_displayed_month() ));
All is still working fine except when we pull the year for the month title
<span class="year-shown"><?php echo tribe_get_current_month_text(); ?> <?= $this_month->format('Y') ?></span>
It only returns 2015 now. I see that tribe_get_displayed_month is deprecated but there is no mention of what to replace it with… Is there a place to see what deprecated functions have been replaced with as I can’t find the docs.