| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/themes/grace-church/tribe-events/widgets/ |
Upload File : |
<?php
/**
* Events List Widget Template
* This is the template for the output of the events list widget.
* All the items are turned on and off through the widget admin.
* There is currently no default styling, which is needed.
*
* This view contains the filters required to create an effective events list widget view.
*
* You can recreate an ENTIRELY new events list widget view by doing a template override,
* and placing a list-widget.php file in a tribe-events/widgets/ directory
* within your theme directory, which will override the /views/widgets/list-widget.php.
*
* You can use any or all filters included in this file or create your own filters in
* your functions.php. In order to modify or extend a single filter, please see our
* readme on templates hooks and filters (TO-DO)
*
* @return string
*
* @package TribeEventsCalendar
*
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
$events_label_plural = tribe_get_event_label_plural();
$posts = tribe_get_list_widget_events();
// Check if any event posts are found.
if ( $posts ) : ?>
<ol class="hfeed vcalendar">
<?php
// Setup the post data for each event.
foreach ( $posts as $post ) :
setup_postdata( $post );
?>
<li class="tribe-events-list-widget-events <?php tribe_events_event_classes() ?>">
<?php do_action( 'tribe_events_list_widget_before_the_event_title' ); ?>
<!-- Event Title -->
<h4 class="entry-title summary">
<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h4>
<?php do_action( 'tribe_events_list_widget_after_the_event_title' ); ?>
<!-- Event Time -->
<?php do_action( 'tribe_events_list_widget_before_the_meta' ) ?>
<div class="duration">
<?php echo tribe_events_event_schedule_details(); ?>
</div>
<?php do_action( 'tribe_events_list_widget_after_the_meta' ) ?>
</li>
<?php
endforeach;
?>
</ol><!-- .hfeed -->
<p class="tribe-events-widget-link">
<a href="<?php echo esc_url( tribe_get_events_link() ); ?>" rel="bookmark"><?php printf( esc_html__( 'View All %s', 'grace-church' ), $events_label_plural ); ?></a>
</p>
<?php
// No events were found.
else : ?>
<p><?php printf( esc_html__( 'There are no upcoming %s at this time.', 'grace-church' ), strtolower( $events_label_plural ) ); ?></p>
<?php
endif;