mc_format_toggle_html - joedolson/my-calendar GitHub Wiki
Filter the HTML for the list/grid/card format switcher in navigation elements.
Auto-generated Example
add_filter(
'mc_format_toggle_html',
function(
string $toggle,
string $format,
string $time
) {
// Your code here.
return $toggle;
},
10,
3
);
Parameters
string$toggleHTML output for control.string$formatCurrent view format.string$timeCurrent time frame.
Returns
string
Files
apply_filters( 'mc_format_toggle_html', $toggle, $format, $time )