wp_maybe_clean_new_site_cache_on_update

函式
wp_maybe_clean_new_site_cache_on_update ( $new_site, $old_site )
引數
  • (WP_Site) $new_site The site object after the update.
    Required:
  • (WP_Site) $old_site The site object prior to the update.
    Required:
定義位置
相關方法
wp_maybe_update_network_site_counts_on_updatewp_maybe_transition_site_statuses_on_updatewp_maybe_update_network_site_countswp_maybe_auto_updatewp_maybe_grant_site_health_caps
引入
5.1.0
棄用
-

wp_maybe_clean_new_site_cache_on_update:這是一個函式,用於在網站更新時清除網站的快取: 這個函式用於確保網站顯示的是最新版本的內容。

在特定的網站資料被更新後,清理必要的快取。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_maybe_clean_new_site_cache_on_update( $new_site, $old_site ) {
if ( $old_site->domain !== $new_site->domain || $old_site->path !== $new_site->path ) {
clean_blog_cache( $new_site );
}
}
function wp_maybe_clean_new_site_cache_on_update( $new_site, $old_site ) { if ( $old_site->domain !== $new_site->domain || $old_site->path !== $new_site->path ) { clean_blog_cache( $new_site ); } }
function wp_maybe_clean_new_site_cache_on_update( $new_site, $old_site ) {
	if ( $old_site->domain !== $new_site->domain || $old_site->path !== $new_site->path ) {
		clean_blog_cache( $new_site );
	}
}

常見問題

FAQs
檢視更多 >