Facebook Like Button On Individual Comments

Has anyone added this kind of functionality to a WP site before? I’m looking to add Facebook Like button to individual comments. This can be a Theme function or a plugin

Related posts

Leave a Reply

1 comment

  1. You should add the list of comments within the comments.php file the following code:

    <iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(post_permalink() . '#comment-' . comment_ID()); ?>&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px;"></iframe>
    

    And then customize the display rules in the stylesheet. Hope that helps. 😉