wp_schedule_update_network_counts

函式
wp_schedule_update_network_counts ( No parameters )

wp_schedule_update_network_counts: 這是一個WordPress函式,用來安排更新WordPress多站點網路上的站點和使用者的網路計數。它允許你指定一個時間間隔和一個回撥函式,該函式將在該時間間隔執行,以更新網路計數。例如,你可以使用這個函式來安排每週執行一次更新。

安排更新當前網路的全網計數。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_schedule_update_network_counts() {
if ( ! is_main_site() ) {
return;
}
if ( ! wp_next_scheduled( 'update_network_counts' ) && ! wp_installing() ) {
wp_schedule_event( time(), 'twicedaily', 'update_network_counts' );
}
}
function wp_schedule_update_network_counts() { if ( ! is_main_site() ) { return; } if ( ! wp_next_scheduled( 'update_network_counts' ) && ! wp_installing() ) { wp_schedule_event( time(), 'twicedaily', 'update_network_counts' ); } }
function wp_schedule_update_network_counts() {
	if ( ! is_main_site() ) {
		return;
	}

	if ( ! wp_next_scheduled( 'update_network_counts' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'update_network_counts' );
	}
}

常見問題

FAQs
檢視更多 >