---
title: Filter Open Graph sitename
url: "https://www.seopress.org/support/hooks/filter-open-graph-sitename/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_social_og_site_name
required_version: 2.7.2
---

# Filter Open Graph sitename

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



