Exemple #1
0
 /**
  * Used in the month loop.
  * Returns true if there are more calendar days available in the loop.
  *
  * Example:
  * < code >
  * <?php
  * // loop through the days in the current month query
  * while( tribe_events_have_month_days() ) : tribe_events_the_month_day();
  *        // do stuff
  * endwhile;
  * ?>
  * </ code >
  *
  * @return bool
  * @see Tribe__Events__Template__Month::have_days()
  **/
 function tribe_events_have_month_days()
 {
     return Tribe__Events__Template__Month::have_days();
 }