---
title: Filtrer le titre Open Graph
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-titre-open-graph/"
lang: fr-FR
updated: 2018-04-13
hook_name: seopress_social_og_title
required_version: 2.7.2
---

# Filtrer le titre Open Graph

- **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)



