update_blog_status( int $blog_id, string $pref, string $value, null $deprecated = null )

Update a blog details field.


Description Description


Parameters Parameters

$blog_id

(int) (Required) Blog ID.

$pref

(string) (Required) Field name.

$value

(string) (Required) Field value.

$deprecated

(null) (Optional) Not used.

Default value: null


Top ↑

Return Return

(string|false) $value


Top ↑

Source Source

File: wp-includes/ms-blogs.php

function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) {
	global $wpdb;

	if ( null !== $deprecated ) {
		_deprecated_argument( __FUNCTION__, '3.1.0' );
	}

	if ( ! in_array( $pref, array( 'site_id', 'domain', 'path', 'registered', 'last_updated', 'public', 'archived', 'mature', 'spam', 'deleted', 'lang_id' ) ) ) {
		return $value;
	}

	$result = wp_update_site(
		$blog_id,
		array(
			$pref => $value,
		)
	);

	if ( is_wp_error( $result ) ) {
		return false;
	}

	return $value;
}

Top ↑

Changelog Changelog

Changelog
Version Description
MU (3.0.0) MU (3.0.0)
5.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.