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

# Filtrer le sitename Open Graph

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

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

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



