---
title: Filter image size used in Open Graph and X Card tags
url: "https://www.seopress.org/support/hooks/filter-image-size-used-in-open-graph-and-x-card-tags/"
lang: en-US
updated: 2025-12-15
hook_name: seopress_social_image_size
required_version: 9.4
---

# Filter image size used in Open Graph and X Card tags

- **Hook name:** `seopress_social_image_size`
- **Required version:** 9.4

```php
add_filter( 'seopress_social_image_size', 'sp_social_image_size' );
function sp_social_image_size( $size ) {
	// Return the size you want to use for the image, default is 'full'
	return 'large';
}
```

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



