Created
January 23, 2017 12:31
-
-
Save ville6000/801ef2bc69f739447cfe440b7f4e847d to your computer and use it in GitHub Desktop.
Set custom Yoast SEO og:image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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