mc_location_list - joedolson/my-calendar GitHub Wiki
Filter the output HTML of the location list.
Auto-generated Example
add_filter(
'mc_location_list',
function(
string $output,
array $add
) {
// Your code here.
return $output;
},
10,
2
);
Parameters
string$outputOutput HTML for the form.array$addArray of locations represented in this list.
Returns
string
Files
apply_filters( 'mc_location_list', $output, $locations )