mc_grid_date - joedolson/my-calendar GitHub Wiki
Alter the date format used to show the current day in grid view. Default 'j'.
Auto-generated Example
add_filter(
'mc_grid_date',
function(
string $format,
array $params
) {
// Your code here.
return $format;
},
10,
2
);
Parameters
string$formatDate format per PHP date formatting.array$paramsArray of view arguments.
Returns
string
Files
apply_filters( 'mc_grid_date', 'j', $params )