Changeset 40484 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 04/19/2017 11:59:16 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r40391 r40484 2330 2330 * 2331 2331 * @since 3.7.0 2332 * 2333 * @global wpdb $wpdb WordPress database abstraction object. 2334 */ 2335 function wp_update_network_site_counts() { 2336 global $wpdb; 2332 * @since 4.8.0 The $network_id parameter has been added. 2333 * 2334 * @param int|null $network_id ID of the network. Default is the current network. 2335 */ 2336 function wp_update_network_site_counts( $network_id = null ) { 2337 $network_id = (int) $network_id; 2338 if ( ! $network_id ) { 2339 $network_id = get_current_network_id(); 2340 } 2337 2341 2338 2342 $count = get_sites( array( 2339 'network_id' => $ wpdb->siteid,2343 'network_id' => $network_id, 2340 2344 'spam' => 0, 2341 2345 'deleted' => 0, … … 2344 2348 ) ); 2345 2349 2346 update_ site_option('blog_count', $count );2350 update_network_option( $network_id, 'blog_count', $count ); 2347 2351 } 2348 2352
Note: See TracChangeset
for help on using the changeset viewer.