add_site_option

Advertisement

Summery Summery

Adds a new option for the current network.

Syntax Syntax

add_site_option( string $option, mixed $value )

Description Description

Existing options will not be updated. Note that prior to 3.3 this wasn’t the case.

Parameters Parameters

$option

(Required) Name of option to add. Expected to not be SQL-escaped.

$value

(Required) Option value, can be anything. Expected to not be SQL-escaped.

Return Return

(bool) False if the option was not added. True if the option was added.

Source Source

File: wp-includes/option.php

/**
 * Private. Sets all user interface settings.

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Modified into wrapper for add_network_option()
2.8.0 Introduced.

See also See also

Advertisement

Leave a Reply