golden hour
/var/www/html/wp-content/plugins/the-events-calendar/src/views/v2/month
⬆️ Go Up
Upload
File/Folder
Size
Actions
calendar-body
-
Del
OK
calendar-body.php
914 B
Del
OK
calendar-header.php
1.32 KB
Del
OK
mobile-events
-
Del
OK
mobile-events.php
825 B
Del
OK
top-bar
-
Del
OK
top-bar.php
575 B
Del
OK
Edit: calendar-body.php
<?php /** * View: Month View - Calendar Body * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/month/calendar-body.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @version 4.9.8 * * @var array $days An array containing the data for each day on the calendar grid, divided by day. * Shape `[ <Y-m-d> => [ ...<day_data> ] ]`. */ ?> <div class="tribe-events-calendar-month__body" role="rowgroup"> <?php foreach ( array_chunk( $days, 7, true ) as $week ) : ?> <div class="tribe-events-calendar-month__week" role="row" data-js="tribe-events-month-grid-row"> <?php foreach ( $week as $day_date => $day ) : ?> <?php $this->template( 'month/calendar-body/day', [ 'day_date' => $day_date, 'day' => $day ] ); ?> <?php endforeach; ?> </div> <?php endforeach; ?> </div>
Save