本文整理汇总了PHP中Tribe__Events__Main::get_series_start_date方法的典型用法代码示例。如果您正苦于以下问题:PHP Tribe__Events__Main::get_series_start_date方法的具体用法?PHP Tribe__Events__Main::get_series_start_date怎么用?PHP Tribe__Events__Main::get_series_start_date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tribe__Events__Main
的用法示例。
在下文中一共展示了Tribe__Events__Main::get_series_start_date方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_series_start_date
/**
* Placed here for compatibility reasons. This can be removed
* when Events Calendar 3.2 or greater is released
*
* @todo Remove this method
*
* @param int $post_id
*
* @return string
* @see Tribe__Events__Main::get_series_start_date()
*/
private static function get_series_start_date($post_id)
{
if (method_exists('Tribe__Events__Main', 'get_series_start_date')) {
return Tribe__Events__Main::get_series_start_date($post_id);
}
$start_dates = tribe_get_recurrence_start_dates($post_id);
return reset($start_dates);
}
示例2: getRealStartDate
/**
* Sorts the meta to ensure we are getting the real start date
* @deprecated since 3.4
*
* @param int $postId
*
* @return string
* @todo remove - unused
*/
public static function getRealStartDate($postId)
{
return Tribe__Events__Main::get_series_start_date($postId);
}