-
Notifications
You must be signed in to change notification settings - Fork 16
mc_search_fields
github-actions[bot] edited this page Jun 14, 2026
·
7 revisions
Customize the MATCH fields for a MyISAM boolean search query.
add_filter(
'mc_search_fields',
function( string $values ) {
// Your code here.
return $values;
}
);-
string$valuesComma-separated list of columns.
string
apply_filters( 'mc_search_fields', 'location_label' )apply_filters( 'mc_search_fields', 'location_label,location_city,location_state,location_region,location_country,location_street,location_street2,location_phone' )apply_filters( 'mc_search_fields', 'event_title,event_desc,event_short,event_registration' )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 )