Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created January 23, 2017 12:31
Show Gist options
  • Select an option

  • Save ville6000/801ef2bc69f739447cfe440b7f4e847d to your computer and use it in GitHub Desktop.

Select an option

Save ville6000/801ef2bc69f739447cfe440b7f4e847d to your computer and use it in GitHub Desktop.
Set custom Yoast SEO og:image
<?php
function company_banner_to_og_image( $image ) {
global $post;
if ( is_singular( 'company' ) ) {
$image_sizes = get_field( 'banner', $post->ID );
$image = $image_sizes['sizes']['large'];
}
return $image;
}
add_filter( 'wpseo_opengraph_image', 'company_banner_to_og_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment