---
title: Filter title used in Oembed
url: "https://www.seopress.org/support/hooks/filter-title-used-in-oembed/"
lang: en-US
updated: 2021-09-30
hook_name: seopress_oembed_title
required_version: 3.8.9
---

# Filter title used in Oembed

- **Hook name:** `seopress_oembed_title`
- **Required version:** 3.8.9

```php
add_filter('seopress_oembed_title','sp_oembed_title');
function sp_oembed_title($title) {
	//default title: Custom Open Graph Title set from SEOPress metabox, else post title
	$title = "My custom title for LinkedIn";
	return $title;
}
```

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



