HUSKY - Product Filter 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;
    }