-
Notifications
You must be signed in to change notification settings - Fork 16
mc_location_limit_sql
github-actions[bot] edited this page May 15, 2026
·
4 revisions
Customize location limit SQL.
add_filter(
'mc_location_limit_sql',
function(
{string} $limit_string,
{string} $ltype,
{string} $lvalue
) {
// Your code here.
return $limit_string;
},
10,
3
);-
{string}$limit_stringSQL limit for location query. -
{string}$ltypeLtype value passed. -
{string}$lvalueLvalue passed.
{string}
apply_filters( 'mc_location_limit_sql', $limit_string, $ltype, $lvalue )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 )