Example #1
0
	<!-- List Title -->
	<?php 
do_action('tribe_events_before_the_title');
?>
	<h2 class="tribe-events-page-title"><?php 
echo tribe_get_events_title();
?>
</h2>
	<?php 
do_action('tribe_events_after_the_title');
?>

	<!-- Notices -->
	<?php 
tribe_the_notices();
?>

	<!-- List Header -->
	<?php 
do_action('tribe_events_before_header');
?>
	<div id="tribe-events-header" <?php 
tribe_events_the_header_attributes();
?>
>

		<!-- Header Navigation -->
		<?php 
do_action('tribe_events_before_header_nav');
?>
Example #2
0
 /**
  * Generates html for any notices that have been queued on the current view
  *
  * @category Events
  *
  * @param bool $echo Whether or not to echo the notices html
  *
  * @return string
  * @see Tribe__Notices::get()
  **/
 function tribe_events_the_notices($echo = true)
 {
     _deprecated_function(__FUNCTION__, '4.0', 'tribe_the_notices');
     return tribe_the_notices($echo);
 }