Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
src
/
views
/
integrations
/
elementor
/
widgets
:
event-calendar-link.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * View: Elementor Event Calendar Link widget. * * You can override this template in your own theme by creating a file at * [your-theme]/tribe/events/integrations/elementor/widgets/event-calendar_link.php * * @since 6.4.0 * * @var string $calendar_link_tag HTML tag for the backlink. * @var string $calendar_link_label Label for the link. * @var string $calendar_link_class CSS classes. * @var string $calendar_link URL to the events page. * @var Event_Calendar_Link $widget The widget instance. */ use TEC\Events\Integrations\Plugins\Elementor\Widgets\Event_Calendar_Link; ?> <<?php echo tag_escape( $calendar_link_tag ); ?> <?php tribe_classes( $calendar_link_class ); ?>> <a href="<?php echo esc_url( $calendar_link ); ?>" >« <?php echo wp_kses_post( $calendar_link_label ); ?></a> </<?php echo tag_escape( $calendar_link_tag ) . '>'; ?>