---
title: Filtre una matriz de etiquetas de un solo producto usando %% wc_single_tag %%
url: "https://www.seopress.org/es/soporte/hooks/filtre-una-matriz-de-etiquetas-de-un-solo-producto-usando-wc_single_tag/"
lang: es
updated: 2021-09-30
hook_name: seopress_titles_product_tag
required_version: 3.7.2
---

# Filtre una matriz de etiquetas de un solo producto usando %% wc_single_tag %%

- **Hook name:** `seopress_titles_product_tag`
- **Required version:** 3.7.2

```php
add_filter('seopress_titles_product_tag', 'sp_titles_product_tag');
function sp_titles_product_tag($tag) {
	//$tag = array of single product tag, key = term ID, value = term name
	unset($tag[20]);	//remove tag with term id "20"
	return $tag;
}
```

Source: [https://gist.github.com/wp-seopress/d239604ae548c546503fd29cd8155c6c](https://gist.github.com/wp-seopress/d239604ae548c546503fd29cd8155c6c)



