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


Parameters

$url

(string) (Required)


Top ↑

Return

(string)


Top ↑

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'
		);
	}