wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_maybe_update_network_site_counts_on_update › WordPress Function

Seit5.1.0
Veraltetn/v
wp_maybe_update_network_site_counts_on_update ( $new_site, $old_site = null )
Parameter: (2)
  • (WP_Site) $new_site The site object that has been inserted, updated or deleted.
    Erforderlich: Ja
  • (WP_Site|null) $old_site Optional. If $new_site has been updated, this must be the previous state of that site. Default null.
    Erforderlich: Nein
    Standard: null
Definiert in:
Codex:

Updates the count of sites for a network based on a changed site.



Quellcode

function wp_maybe_update_network_site_counts_on_update( $new_site, $old_site = null ) {
	if ( null === $old_site ) {
		wp_maybe_update_network_site_counts( $new_site->network_id );
		return;
	}

	if ( $new_site->network_id !== $old_site->network_id ) {
		wp_maybe_update_network_site_counts( $new_site->network_id );
		wp_maybe_update_network_site_counts( $old_site->network_id );
	}
}