Tribe__Events__Aggregator__Settings::build_disconnect_eventbrite_url( string $url )
Given a URL, tack on the parts of the URL that gets used to disconnect Eventbrite
Contents
Parameters
- $url
-
(string) (Required)
Return
(string)
Source
File: src/Tribe/Aggregator/Settings.php
public function build_disconnect_eventbrite_url( $url ) {
return wp_nonce_url(
add_query_arg(
'action',
'disconnect-eventbrite',
$url
),
'disconnect-eventbrite'
);
}