wc_get_product_tax_class_options()
Get product tax class options.
Хуков нет.
Возвращает
Массив
.
Использование
wc_get_product_tax_class_options();
Список изменений
С версии 3.0.0 | Введена. |
Код wc_get_product_tax_class_options() wc get product tax class options WC 9.4.2
function wc_get_product_tax_class_options() { $tax_classes = WC_Tax::get_tax_classes(); $tax_class_options = array(); $tax_class_options[''] = __( 'Standard', 'woocommerce' ); if ( ! empty( $tax_classes ) ) { foreach ( $tax_classes as $class ) { $tax_class_options[ sanitize_title( $class ) ] = $class; } } return $tax_class_options; }