WC_Brands_Admin::add_column_to_importer_exporter()publicWC 1.0

Add csv column for importing/exporting.

Method of the class: WC_Brands_Admin{}

No Hooks.

Return

Array. $options

Usage

$WC_Brands_Admin = new WC_Brands_Admin();
$WC_Brands_Admin->add_column_to_importer_exporter( $options );
$options(array) (required)
Mapping options.

WC_Brands_Admin::add_column_to_importer_exporter() code WC 9.5.1

public function add_column_to_importer_exporter( $options ) {
	$options['brand_ids'] = __( 'Brands', 'woocommerce' );
	return $options;
}