Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ShaneGowland's full-sized avatar

Shane Gowland ShaneGowland

View GitHub Profile
@ShaneGowland
ShaneGowland / Count sites on WordPress Network (shortcode)
Last active December 15, 2015 18:59
Allows you to display the total number of sites on a WordPress Network. Pluginified.
function get_site_count(){
global $wpdb;
$id = 0;
$site_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM wp_blogs WHERE deleted = %d",$id));
return $site_count;
}
//register the shortcode
add_shortcode('sitecount', 'get_site_count');