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

# Filter Open Graph thumbnail

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

```php
function sp_social_og_thumb($html) { 
	//you can add here all your conditions like if is_page(), is_category() etc.. 
	$html = '<meta property="og:image" content="https://www.seopress.org/wp-content/uploads/2016/12/cropped-ico-logo-seopress-256x256.png" />'; 
	return $html;
}
add_filter('seopress_social_og_thumb', 'sp_social_og_thumb');
```

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



