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

February 12, 2011 


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