mc_search_after - joedolson/my-calendar GitHub Wiki
HTML template after the search results. Default </ol>.
add_filter(
'mc_search_after',
function(
string $footer,
string|array $term
) {
// Your code here.
return $footer;
},
10,
2
);-
string$footerHTML output. -
string|array$termThe search query arguments. Can be a string or an array of search parameters.
string
apply_filters( 'mc_search_after', '</ol>', $term )