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

1 Answer
1

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

<iframe src="https://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. 😉

Leave a Reply

Your email address will not be published. Required fields are marked *