woof_add_html_types
Verwendung in Taxonomie-Typ-Erweiterungen, um deren Schlüssel im System hinzuzufügen, damit die Erweiterung sichtbar wird
Beispiel:
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;
}