WC_Product_CSV_Exporter::enable_meta_export() public WC 3.1.0
Should meta be exported?
{} Это метод класса: WC_Product_CSV_Exporter{}
Хуков нет.
Возвращает
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 Product CSV Exporter::enable meta export WC 5.0.0
public function enable_meta_export( $enable_meta_export ) {
$this->enable_meta_export = (bool) $enable_meta_export;
}