HUSKY - Products Filter Professional for WooCommerce

woof_add_html_types

拡張機能がシステムにキーを追加するためにタクソミータイプ拡張機能で使用され、拡張機能を可視化します

:

add_filter('woof_add_html_types', array($this, 'woof_add_html_types'));

public function woof_add_html_types($types)
    {
        $types[$this->html_type] = __('Label', 'woocommerce-products-filter');
        return $types;
    }