wp_update_network_counts [ WordPress Function ]
wp_update_network_counts ( No parameters )
| Defined at: |
|
Benzer Fonksiyonlar: wp_schedule_update_network_counts, wp_update_term_count, wp_update_term_count_now, wp_update_comment_count, wp_update_comment
Update the network-wide counts for the current network.
@since 3.1.0
Source
<?php
function wp_update_network_counts() {
global $wpdb;
$count = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(blog_id) as c FROM $wpdb->blogs WHERE site_id = %d AND spam = '0' AND deleted = '0' and archived = '0'", $wpdb->siteid) );
update_site_option( 'blog_count', $count );
$count = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(ID) as c FROM $wpdb->users WHERE spam = '0' AND deleted = '0'") );
update_site_option( 'user_count', $count );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- <?php // A set of unit tests for WordPress MultiSite /* To get the test ...
i, $id ); $this->assertInternalType( 'int', $blog ); $temp_blog_ids[] = $blog; } // update the blog count cache to use get_blog_count() wp_update_network_counts(); ...
gsoc.svn.wordpress.org - Plugin API/Filter Reference/schedule event « WordPress Codex
... wp_update_plugins, wp_update_themes, wp_schedule_delete, and (for the main site of multisite installs only) wp_update_network_counts. In WordPress ...
codex.wordpress.org - ms-functions.php - PHP Cross Reference of WordPress Source - Yoast
Jun 1, 2011 ... welcome_user_msg_filter() force_ssl_content() filter_SSL() wp_schedule_update_network_counts() wp_update_network_counts(). Functions ...
xref.yoast.com - A HitchHackers guide through WordPress | Category Archive | /wp ...
wp_update_network_counts. February 24, 2011 by Thorsten · 0 Comments. Update the network-wide counts for the current network. 11041. Read more ...
hitchhackerguide.com