---
title: Meta de tiempo de modificación del artículo de filtro
url: "https://www.seopress.org/es/soporte/hooks/meta-de-tiempo-de-modificacion-del-articulo-de-filtro/"
lang: es
updated: 2021-09-29
hook_name: seopress_titles_article_modified_time
required_version: 3.5
---

# Meta de tiempo de modificación del artículo de filtro

- **Hook name:** `seopress_titles_article_modified_time`
- **Required version:** 3.5

```php
function sp_titles_article_modified_time($html) { 
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = '<meta property="article:modified_time" content="2019-05-06T19:18:27+00:00" />';
	return $html;
}
add_filter('seopress_titles_article_modified_time', 'sp_titles_article_modified_time');
```

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



