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


Parameters

$url

(string) (Required)


Top ↑

Return

(string) The URL to issue a Meeetup disconnect request to EA Service.


Top ↑

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

Top ↑

Changelog

Changelog
Version Description
4.9.6 Introduced.