Facebook just released new share/connect functionality in the form of Send Button. The send button enables your site visitors to send your content directly to their friends as a private message. Unlike the share and like buttons, which post to a users wall, the send message may be more effective as it targets individuals or Groups. Presumably the recipients would have more interest in the content, otherwise why would someone send directly to them?
With the facebook send button, you are able to quickly and easy share private content without having to look up email addresses. The button auto suggests your facebook friends and groups.
How to Add a Facebook Send Button
You can implement the send button by itself or you can combine it with the Like button so they show side by side.
The Facebook Developers site has a nifty tool, which allows you create a send Button for your website – Click here.
Want a combined Like/Send Button? Click here
How to add the Facebook Send Button toWordpress
There are already plugins cropping up which will help you add Facebook Send to your site: Facebook Send Button Plugin
Or, if you are more a do-it-yourselfer, here is a little snippet of code that you can add directly to your WordPress Theme. This uses the get_permalink code so add this code to your loop so that each post can be shared with the send button.
<div id="fb-root"></div>
<script src="https://connect.facebook.net/en_US/all.js#appId=APP_ID&xfbml=1"></script>
<fb:send href="<?php echo urlencode(get_permalink($post->ID)); ?>" font="arial"></fb:send>