tribe_update_organizer( int $postId, array $args )

Update an Organizer

See also


Top ↑

Parameters

$postId

(int) (Required) ID of the Organizer to be modified.

$args

(array) (Required) Args for updating the post. See tribe_create_organizer() for more info.


Top ↑

Return

(int) ID of the Organizer that was created. False if update failed.


Top ↑

Source

File: src/functions/advanced-functions/organizer.php

	function tribe_update_organizer( $postId, $args ) {
		$postId = Tribe__Events__API::updateOrganizer( $postId, $args );

		return $postId;
	}