get_sitestats [ WordPress Function ]
get_sitestats ( No parameters )
| Uses: | |
| Returns: |
|
| Defined at: |
|
Gets the network's site and user counts.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- WPMU Functions/get sitestats « WordPress Codex
Description. Returns an array containing the number of blogs and users registered on this WPMU site, including blogs which are currently marked not public.
codex.wordpress.org - Ticket #12531 - WordPress Trac
I also remove get_sitestats() because we have the two other functions. ... (6.1 KB) - added by ocean90 2 years ago. add get_sitestats() to ms-deprecated.php ...
core.trac.wordpress.org - WordPress › Support » [Plugin: Shortcode Exec PHP] Need help ...
<?php if($multi_site_on == "true"){ if( function_exists('get_sitestats')) { ?> ... <?php $stats = get_sitestats(); $tmp_user_count = number_format ($stats[ 'users' ] ) ...
wordpress.org - get_sitestats | A HitchHackers guide through WordPress
Feb 12, 2011 ... Source code. function get_sitestats() { global $wpdb; $stats['blogs'] = get_blog_count(); $stats['users'] = get_user_count(); return $stats; }. 1693 ...
hitchhackerguide.com