mc_date_utc_format - joedolson/my-calendar GitHub Wiki
End date format used in 'date_end_utc'. Default from My Calendar settings.
Auto-generated Example
add_filter(
'mc_date_utc_format',
function(
string $format,
string string
) {
// Your code here.
return $format;
},
10,
2
);
Parameters
string$formatDate Format in PHP date format.stringstring$context 'template_end_ts'. Other variable names:string $context 'template_begin_ts'.,$template_begin_ts,$template_end_ts
Returns
string Date format.
Files
apply_filters( 'mc_date_utc_format', $date_format, 'template_begin_ts' )
apply_filters( 'mc_date_utc_format', $date_format, 'template_end_ts' )