Advertisement
miriamdepaula

WordPress: Facebook Like Button

Sep 14th, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. //Facebook Like Button para usar nos arquivos: page.php e single.php
  2.  
  3. function facebook_like(){
  4.     global $post;
  5.     $url = urlencode(get_permalink($post->ID));
  6.     $button = '<iframe src="http://www.facebook.com/plugins/like.php?href='.$url.'&amp;layout=standard&amp;show_faces=true&amp;width=330&amp;action=like&amp;font=tahoma&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:330px; height:80px;" allowTransparency="true"></iframe>';
  7.        
  8.     echo $button;
  9. }
  10.  
  11. /*
  12. Coloque <?php facebook_like() ?> onde quiser que o botão apareça
  13. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement