tribe_update_option( string $optionName, string $value )

Update Option

Set specific key from options array, optionally provide a default return value


Parameters

$optionName

(string) (Required) Name of the option to retrieve.

$value

(string) (Required) Value to save


Top ↑

Return

(bool)


Top ↑

Source

File: src/functions/template-tags/general.php

	function tribe_update_option( $optionName, $value ) {
		return Tribe__Settings_Manager::set_option( $optionName, $value );
	}