Definition:
function wp_schedule_update_network_counts() {}
Schedule update of the network-wide counts for the current network.
Source code
function wp_schedule_update_network_counts() { if ( !is_main_site() ) return; if ( !wp_next_scheduled('update_network_counts') && !defined('WP_INSTALLING') ) wp_schedule_event(time(), 'twicedaily', 'update_network_counts'); }
10964
No comments yet... Be the first to leave a reply!