Tribe__Events__Aggregator__Settings::build_disconnect_meetup_url( string $url )
Given a URL, tack on the parts of the URL that gets used to disconnect Meetup
Contents
Parameters
- $url
-
(string) (Required)
Return
(string) The URL to issue a Meeetup disconnect request to EA Service.
Source
File: src/Tribe/Aggregator/Settings.php
public function build_disconnect_meetup_url( $url ) {
return wp_nonce_url(
add_query_arg(
'action',
'disconnect-meetup',
$url
),
'disconnect-meetup'
);
}
Changelog
| Version | Description |
|---|---|
| 4.9.6 | Introduced. |