It would also be cool to create a widget/shortcode to “send” and to “share” the top level domain. Maybe 2 buttons under the facebook connect widget.
In addition, I’d like to request a compatible shortcode for this code:
http://developers.facebook.com/docs/reference/plugins/comments/
which is the “Facebook Comments” code. It would be cool to be able to embed those kinds of comments in widgets, pages and posts for various subcontent or as a shoutbox, guestbook, etc. There are many possibilities.
Lastly, I’d like to request shortcodes for LIKE, SEND and COMMENTS that can be used WITHIN a post, page or widget on any content. Suppose I post an audio file and a picture. A person can LIKE a post. But it would also be cool if they could individually LIKE the audio or picture separately or alternatively. Using a shortcode makes sense but I don’t know how to do it and the times I’ve tried it didn’t work.
Something like this:
[SFC_LIKE url=(direct URL to object, image, audio, video, etc)]
[SFC_SEND url=(direct URL to object, image, audio, video, etc)]
[SFC_SHARE url=(direct URL to object, image, audio, video, etc)]
[SFC_COMMENT url=(direct URL to object, image, audio, video, etc)]
Similar would be cool for STC also — 😛
Found another: Check out http://www.likester.com/LikeNetwork.aspx#
They have a “SUGGEST TO FRIENDS” feature. That is really cool. It would be awesome to have something like that where one can invite friends to their APP via WordPress.
Send won’t work with the iframe version of the like button. It will be available in SFC version 1.0, if and when.
Cool! 😀
Just offering ideas 😛
I got this to work without adding anything else because the plugin I guess already calls the scripts:
In my childtheme functions.php
function fbdomcom() {
return '<fb:comments href="http://newurbangirl.me/" num_posts="25" width="474"></fb:comments>';
}
add_shortcode('fdcm','fdomcom');
function comthisFB($atts) {
extract(shortcode_atts(array(
"href" => 'http://'
), $atts));
return '<fb:comments href="'.$href.'" num_posts="25" width="474"></fb:comments>';
}
add_shortcode("fbcom", "comthisFB");
if (!is_admin())
add_filter('widget_text', 'do_shortcode', 11);
Which adds the facebook comment box to any content in a page or post. So this isn’t competing with what you have set up already. I don’t know how to make plugins or I’d help.