---
title: Título de gráfico abierto de filtro
url: "https://www.seopress.org/es/soporte/hooks/titulo-de-grafico-abierto-de-filtro/"
lang: es
updated: 2021-09-29
hook_name: seopress_social_og_title
required_version: 2.7.2
---

# Título de gráfico abierto de filtro

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

```php
function sp_social_og_title($html) { 
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = '<meta property="og:title" content="my amazing og:title" />'; 
	return $html;
}
add_filter('seopress_social_og_title', 'sp_social_og_title');
```

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



