-
Notifications
You must be signed in to change notification settings - Fork 16
mc_access_selector
github-actions[bot] edited this page May 15, 2026
·
5 revisions
Filter the HTML for the accessibility feature filter in navigation elements.
add_filter(
'mc_access_selector',
function(
{string} $output,
{array} $access_options
) {
// Your code here.
return $output;
},
10,
2
);-
{string}$outputHTML output for control. -
{array}$access_optionsAvailable accessibility options.
{string}
apply_filters( 'mc_access_selector', $output, $access_options )Replace the list footer for upcoming events lists. Default value </ul></div>.
add_filter(
'mc_upcoming_events_footer',
function( string $header ) {
// Your code here.
return $header;
}
);-
string$headerExisting upcoming events footer HTML.
string List header HTML.
apply_filters( 'mc_upcoming_events_footer', $footer )