Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. function company_banner_to_og_image( $image ) {
  4. global $post;
  5.  
  6. if ( is_singular( 'company' ) ) {
  7. $image_sizes = get_field( 'banner', $post->ID );
  8. $image = $image_sizes['sizes']['large'];
  9. }
  10.  
  11. return $image;
  12. }
  13.  
  14. add_filter( 'wpseo_opengraph_image', 'company_banner_to_og_image' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement