---
title: Filtrar relación Dublin Core
url: "https://www.seopress.org/es/soporte/hooks/filtrar-relacion-dublin-core/"
lang: es
updated: 2021-09-29
hook_name: seopress_dublin_core_relation
required_version: 2.7.2
---

# Filtrar relación Dublin Core

- **Hook name:** `seopress_dublin_core_relation`
- **Required version:** 2.7.2

```php
function sp_dublin_core_relation($html) { 
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = '<meta name="dc.relation" content="https://www.seopress.org/" />'; 
	return $html;
}
add_filter('seopress_dublin_core_relation', 'sp_dublin_core_relation');
```

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



