Is it possible to integrate WordPress *posts* and social media (Facebook, Google+, Twitter)? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Asking to recommend a product (plugin, theme, book, hosting provider), tool, library or off-site resource is out of scope of the site, as it attracts opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Closed … Read more

How to get wordpress link to fully evaluate when coming from facebook

The short version: Any link from Facebook to a page stops evaluating at the “hardcoded page” in the wordpress press install, ignoring the remaining parts of the URL. It doesn’t allow the shortcode I wrote, that autogenerates the content on a page for any realestate listing in an external table, to evaluate. The Long Version … Read more

custom field with total count of Facebook likes, comments and shares

i want to make custom filed that contains facebook like count for the post url to get the likes i used this code function fb_count(){ $link = get_permalink($post->ID); $content = file_get_contents(“http://api.facebook.com/restserver.php?method=links.getStats&urls=”.$link); $element = new SimpleXmlElement($content); $shareCount = $element->link_stat->total_count; return $shareCount;} which i don’t know how to store the Facebook data in custom filed i tried … Read more

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 1 Answer 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-‘ . … Read more