Beispiel #1
0
 /**
  * @deprecated
  */
 function tribe_events_event_recurring_info_tooltip($post_id = null)
 {
     _deprecated_function(__FUNCTION__, '3.5', 'tribe_events_recurrence_tooltip()');
     if (function_exists('tribe_events_recurrence_tooltip')) {
         tribe_events_recurrence_tooltip($post_id);
     }
 }
Beispiel #2
0
 /**
  * Append the recurring info tooltip after an event schedule
  *
  * @param string $schedule_details
  * @param int $event_id
  *
  * @return string
  */
 public function append_recurring_info_tooltip($schedule_details, $event_id = 0)
 {
     $tooltip = tribe_events_recurrence_tooltip($event_id);
     return $schedule_details . $tooltip;
 }
		</div><!-- .tribe-events-single-event-description -->
		<?php 
    do_action('tribe_events_single_event_after_the_content');
    ?>

		<?php 
    if (get_post_type() == Tribe__Events__Main::POSTTYPE && tribe_get_option('showComments', false)) {
        comments_template();
    }
    ?>

	</div><!-- #tribe-events-content -->
	<div class="wpv-tribe-events-meta">
		<?php 
    do_action('tribe_events_single_event_before_the_meta');
    ?>
			<?php 
    echo tribe_events_single_event_meta();
    ?>
			<?php 
    if (function_exists('tribe_events_recurrence_tooltip')) {
        echo tribe_events_recurrence_tooltip();
    }
    ?>
		<?php 
    do_action('tribe_events_single_event_after_the_meta');
    ?>
	</div>
</div>
<?php 
}