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

# Filter Open Graph title

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



