Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wp-seopress/f364da9abe3d35a108fba58c24ac8a20 to your computer and use it in GitHub Desktop.

Select an option

Save wp-seopress/f364da9abe3d35a108fba58c24ac8a20 to your computer and use it in GitHub Desktop.
Filter image size used in Open Graph and X Card tags
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';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment