Home / Widgets / Change Combined Date Format | Display Eventbrite Events
Duplicate Snippet

Embed Snippet on Your Site

Change Combined Date Format | Display Eventbrite Events

The combined date display layout is used is most layouts, e.g. card, widget, default and can be changed by this filter, using the date formats of your choice ( see PHP date formats for the codes ).

(Note this code snippet applies for "Display Eventbrite Events Plugin" available here: https://fullworksplugins.com/products/widget-for-eventbrite/ )

Code Preview
php
<?php
add_filter(
	'wfea_combined_date_time_date_format',
	function ( $format ) {
		return 'F j,Y @ H:i';
	}
	, 999
);

Comments

Add a Comment