WC_Admin_Notices::regenerating_lookup_table_notice()public staticWC 3.6.0

Notice shown when regenerating thumbnails background process is running.

Метод класса: WC_Admin_Notices{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Admin_Notices::regenerating_lookup_table_notice();

Список изменений

С версии 3.6.0 Введена.

Код WC_Admin_Notices::regenerating_lookup_table_notice() WC 8.7.0

public static function regenerating_lookup_table_notice() {
	// See if this is still relevant.
	if ( ! wc_update_product_lookup_tables_is_running() ) {
		self::remove_notice( 'regenerating_lookup_table' );
		return;
	}

	include dirname( __FILE__ ) . '/views/html-notice-regenerating-lookup-table.php';
}