Facebook Comments not working in WordPress [closed]

You have to setup fb application and config plugin with your app key. Here http://wordpress.org/extend/plugins/facebook-comments-for-wordpress/installation/ is info how. Here is screenshot: paste key in first input box as in picture. And just a friendly advice, use built in WordPress comments, believe me they work so much better. Fb comments – been there, done that, it … Read more

Facebook share button help

You can try using this: <?php $title = get_the_title( $post_id ); $url = urlencode( get_permalink( $post_id ) ); ?> <a class=”fb” target=”_blank” href=”http://www.facebook.com/sharer.php?s=100&pFacebook share button help=<?php echo $title; ?>&p[url]=<?php echo $url; ?>”>Share</a>

Make a magic tag work with Custom Post Types

[Comment reposted as answer at request of OP author:] Rather than deleting them, why don’t you add your post_type to the if() statement: //Don’t process anything but POSTS and PAGES (i.e. no revisions) if( $data[‘post_type’] != ‘post’ && $data[‘post_type’] != ‘page’ && $data[‘post_type’] != ‘foto’ ) return $data; As that comment in the code makes … Read more

get facebook status

There is no real “easy” way to do it anymore, due to Facebook’s requirements for an application and an access token and OAuth and so on. The latest version of my Simple Facebook Connect plugin has a working User Status Widget in the widgets module. It can display the latest status for a user in … Read more