Skip to content

Instantly share code, notes, and snippets.

@joeydi
Last active November 15, 2017 14:27
Show Gist options
  • Save joeydi/d8328445543876172594 to your computer and use it in GitHub Desktop.
Save joeydi/d8328445543876172594 to your computer and use it in GitHub Desktop.
WordPress SEO Open Graph Image Size Filter
<?php
function my_opengraph_image_size() {
return 'large';
}
add_filter( 'wpseo_opengraph_image_size', 'my_opengraph_image_size', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment