Categories: Tips & Tricks

How to: Create a fbshare.me shortcode

Don’t know PHP that well?

Well here is a simple way to add a share script like fbshare.me to your site, via shortcodes.

Paste the following code in your functions.php file in order to create your shortcode:

function fbshare_script() {
     return '<div class="fbshare"><script src="http://widgets.fbshare.me/files/fbshare.js"></script></div>';
}
add_shortcode( 'fbshare', 'fbshare_script' );

Once done, you can display the facebook share button anywhere on your posts. In WordPress editor, make sure you are in HTML mode and insert the following: [fbshare].

When your post will be published, the shortcode will be replaced by the fbshare.me button.

Web Master

Hi, I am Miguel, I bought this site in 2009. So I now run or manage the site. Please visit my new website or follow me on twitter @W3i.

Recent Posts

The launch of WordPress.tv

Hey, in case you are unaware, WordPress has launched a new site called WordPress.tv. Check…

15 hours ago

10 Steps to Evaluating and Measuring Your Marketing Strategy

When you are trying to market a product, the product or service is only as…

1 day ago

Can′t add pagination on WooThemes Thick Theme

Everything I have tried has led to nothing. And I have tried six way's from…

2 days ago

Pulling custom fields from outside the loop

In the last post "Creating a custom widget" I showed you how to create a…

3 days ago