Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Event date

Return the day number from a timestamp on an event

// Add Shortcode
function cy_event_date() {

	// Code
global $post;
$startDate = strtotime( $post->EventStartDate );
return date_i18n( 'D', $startDate);
}
add_shortcode( 'cy_event_date', 'cy_event_date' );