We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filters the location used for WordPress Events.
/** * Filters the location used for WordPress Events. * * @param array $location * @param int $user_id * @return array The filtered value. */ function my_microsub_events_location_callback( array $location, int $user_id ) { // Your code here. return $location; } add_filter( 'microsub_events_location', 'my_microsub_events_location_callback', 10, 2 );
array
$location
int
$user_id
\apply_filters( 'microsub_events_location', $location, $user_id )
← All Hooks