WC_Product_CSV_Exporter::enable_meta_export()publicWC 3.1.0

Should meta be exported?

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

Хуков нет.

Возвращает

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

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

$WC_Product_CSV_Exporter = new WC_Product_CSV_Exporter();
$WC_Product_CSV_Exporter->enable_meta_export( $enable_meta_export );
$enable_meta_export(true|false) (обязательный)
Should meta be exported.

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

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

Код WC_Product_CSV_Exporter::enable_meta_export() WC 8.7.0

public function enable_meta_export( $enable_meta_export ) {
	$this->enable_meta_export = (bool) $enable_meta_export;
}