Skip to content

Instantly share code, notes, and snippets.

@mariusghitulescu
Created September 27, 2018 14:49
Show Gist options
  • Save mariusghitulescu/d7f9e8f52f709ca79ce3c75370268f5a to your computer and use it in GitHub Desktop.
Save mariusghitulescu/d7f9e8f52f709ca79ce3c75370268f5a to your computer and use it in GitHub Desktop.
Custom og:image for shop page - Yoast SEO
add_filter( 'wpseo_opengraph_image', 'change_opengraph_image_url' );
function change_opengraph_image_url($url) {
if ( is_shop() ) {
return 'https://your-image-url.jpg';
} else {
return $url;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment