add_blog_option() WordPress Function

The add_blog_option() function allows you to add a new option for a given blog. The option will be added to the database for the current blog.

add_blog_option( int $id, string $option, mixed $value ) #

Add a new option for a given blog ID.


Description

You do not need to serialize values. If the value needs to be serialized, then it will be serialized before it is inserted into the database. Remember, resources can not be serialized or added as an option.

You can create options without values and then update the values later. Existing options will not be updated and checks are performed to ensure that you aren’t adding a protected WordPress option. Care should be taken to not name options the same as the ones which are protected.


Top ↑

Parameters

$id

(int)(Required)A blog ID. Can be null to refer to the current blog.

$option

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

$value

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


Top ↑

Return

(bool) True if the option was added, false otherwise.


Top ↑

Source

File: wp-includes/ms-blogs.php

function add_blog_option( $id, $option, $value ) {
	$id = (int) $id;

	if ( empty( $id ) ) {
		$id = get_current_blog_id();
	}

	if ( get_current_blog_id() == $id ) {
		return add_option( $option, $value );
	}

	switch_to_blog( $id );
	$return = add_option( $option, $value );
	restore_current_blog();

	return $return;
}


Top ↑

Changelog

Changelog
VersionDescription
MU (3.0.0)Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.