Advertisement
Guest User

WP Balita theme - FB meta

a guest
Feb 8th, 2012
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. ################################################################################
  2. // Add meta for facebook
  3. ################################################################################
  4.    
  5.     add_action('wp_head', 'tk_head_facebook');
  6.     function tk_head_facebook(){
  7.        
  8.         if (tk_is_single_product()){
  9.             global $post;
  10.             $image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium');
  11.            
  12.             echo "\n".'<meta property="og:url" content="'.get_permalink($post->ID) .'" />';
  13.             echo "\n".'<meta property="og:description" content="'.$post->post_content.'" />';
  14.             echo "\n".'<meta property="og:image" content="'.$image_url[0].'" />'." \n";
  15.         }
  16.     }
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement