get_blog_status

Definition:
function get_blog_status( $id, $pref ) {}

Get a blog details field.

Parameters

  • int $id: The blog id
  • string $pref: A field name

Source code

function get_blog_status( $id, $pref ) {

	global $wpdb;



	$details = get_blog_details( $id, false );

	if ( $details )

		return $details->$pref;



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

1220

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: