tribe_remove_option( string $optionName )

Update Option

Remove specific key from options array


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_remove_option( $optionName ) {
		return Tribe__Settings_Manager::remove_option( $optionName );
	}