wordpress / latest / functions / get_blog_status.html

get_blog_status( int $id, string $pref ): bool|string|null

Get a blog details field.

Parameters

$id int Required
Blog ID.
$pref string Required
Field name.

Return

bool|string|null $value

Source

File: wp-includes/ms-blogs.php. View all references

function get_blog_status( $id, $pref ) {
	global $wpdb;

	$details = get_site( $id );
	if ( $details ) {
		return $details->$pref;
	}

	return $wpdb->get_var( $wpdb->prepare( "SELECT %s FROM {$wpdb->blogs} WHERE blog_id = %d", $pref, $id ) );
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
MU (3.0.0) Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_blog_status