Jacob Tomlinson's profile picture Jacob Tomlinson
Home Blog Talks Newsletter About

Using the AddThis Share Buttons wordpress plugin in a custom theme

7 minute read #addthis, #theme, #wordpress

There is an undocumented function for adding a custom AddThis widget to your Wordpress theme when using the Add This Share Buttons plugin, so I thought I would document it here.

Usage:

<?php do_action( 'addthis_widget', $the_permalink, $the_title, $custom_style ); ?>

Parameters:

$the_permalink (string) (optional) The url you want to share with AddThis. Default: get_permalink()

$the_title (string) (optional) The title of the page you’re sharing. Default: get_the_title()

$custom_style (string) (optional) The name of the preset style you want to use or (array) (optional) An array of the settings you want to use for your own custom style Default: ‘fb_tw_p1_sc’

Preset Styles

<td>
  <strong>Description</strong>
</td>
<td>
  Facebook, twitter, pinterest and social counter
</td>
<td>
  Large toolbox
</td>
<td>
  Small toolbox
</td>
<td>
  Google plus counter
</td>
<td>
  Small toolbox with share button
</td>
<td>
  Facebook, twitter and social counter
</td>
<td>
  Simple AddThis sharing button
</td>
<td>
  Default AddThis sharing button
</td>
<td>
  AddThis share counter
</td>
<td>
  SPECIAL loads your setting from the admin control panel for the top widget
</td>
<td>
  SPECIAL loads your setting from the admin control panel for the bottom widget
</td>
Style
fb_tw_p1_sc
large_toolbox
small_toolbox
plus_one_share_counter
small_toolbox_with_share
fb_tw_sc
simple_button
button
share_counter
above
below

Custom Style Settings

<td>
  <strong>Description</strong>
</td>
<td>
  (<em>string</em>) Must be set to <em>&#8216;custom&#8217;</em>
</td>
<td>
  (<em>string</em>) Icon size, 16 or 32. e.g <em>&#8217;16&#8242;</em>
</td>
<td>
  (<em>string</em>) Comma separated services. Full list of services <a title="AddThis Services" href="http://www.addthis.com/services/list#.UUX6QlqAuYQ" target="_blank">here</a>. e.g <em>&#8216;facebook, twitter, google_plusone_share, email, pinterest_share&#8217;</em>
</td>
<td>
  (<em>string</em>) Number of additional services chosen from the user&#8217;s most used. e.g <em>&#8217;3&#8242;</em>
</td>
<td>
  (<em>boolean</em>) If you want to have the more button at the end. e.g <em>true</em>
</td>
<td>
  (<em>boolean/string</em>) If you want the counter at the end e.g  <em>true</em> or the counter style (assumes true) e.g  <em>&#8216;bubble_style&#8217;</em>
</td>
Setting
type
size
services
preferred
more
counter

Example Usage

<?php do_action( 'addthis_widget', get_permalink(), get_the_title(), 'small_toolbox'); ?>
<?php do_action( 'addthis_widget', get_permalink(), get_the_title(), array(
    'type' => 'custom',
    'size' => '16', // size of the icons.  Either 16 or 32
    'services' => 'facebook,twitter,digg', // the services you want to always appear
    'preferred' => '7', // the number of auto personalized services
    'more' => true, // if you want to have a more button at the end
    'counter' => 'bubble_style' // if you want a counter and the style of it
    ));
?>

How I found this

So I recently decided to give my website a bit of a facelift and as part of that I decided to add some better quality sharing buttons to my blog posts and portfolio projects. I settled on using the AddThis Share Buttons plugin for WordPress. However when using the plugin I had a bit of trouble placing the AddThis widget exactly where I wanted it.

The main issue I came across was that when using the settings page for the plugin it only gave me the option to place it above and/or below my post and gave me a selection of a few different styles. When looking at the screenshots I saw buttons for custom and advanced settings and so I assumed I could easily place the widget where I wanted it and would be able to style it as simply as you can with the website version of the AddThis Share Buttons. But once I actually installed the plugin and had a look through the settings I saw that the custom option just allowed you to specify how the box looks but not it’s location and the advanced settings were more for the analytics and other options.

By default if you have a sharing widget at the top the plugin hooks to the content and places the code before your content and if you select bottom it places the code after your content. I didn’t want either of those options as I wanted my top widget to be in with the header in a div that I could specify and control and I wanted the bottom widget to be after other elements like the tags which I had specified in my theme and I wanted them to have a sharing icon which was in keeping with the tag icon that I’d given that tags.

So I began looking for either a php function or shortcode that I could put into my theme. I was unable to find anything in the plugin documentation so naturally I took to google to find a solution. The only thing I managed to find was this forum page where someone suggested using the function

<?php do_action( 'addthis_widget' ); ?>

I found that putting that into your theme gives you a default widget in that position so this is a start.

The next thing I wanted to do was to style the widget how I wanted it. I like the small ‘bubble’ style default widget the you can choose from the default menu but I also wanted one with more options on to go at the bottom. So again back to google, this time with the function name, and found this forum page where it was suggested that you could give an array as the fourth parameter of the action which would take custom options like this

<?php do_action( 'addthis_widget', get_permalink(), get_the_title(), array(
    'size' => '16', // size of the icons.  Either 16 or 32
    'services' => 'hyves,joliprint', // the services you want to always appear
    'preferred' => '8', // the number of auto personalized services
    'more' => true // if you want to have a more button at the end
    ));
?>

The function takes the url to share and the title of the page as the second and third parameters so you have to specify them as we are trying to override the fourth. I had a little play with the options given in the example on that page but couldn’t get the plugin to look quite how I wanted.

I found a second solution where someone suggested that instead of passing an array you can pass a string with the name of the default style you want to use. They went on to suggest that you could then go into the plugin code, find the array of styles and add your own. I wouldn’t recommend this though as your changes would get written over next time the plugin is updated. Remember if you’re creating a custom theme keep all your changes in the theme directory or risk being overwritten in updates.

But if you do want to just specify custom placement of the widget and not a custom style then this is a valid option, here is an example of the code and a list of all the default styles.

<?php do_action( 'addthis_widget', get_permalink(), get_the_title(), 'small_toolbox' );

See table above for details.

But in order to try and specify the exact layout I decided to take a look into the plugin itself and find out what the function was doing. Now the first thing the function does is to check if you’ve passed it a string and if it is in the list of defaults specified above, if so it will load that style. If it isn’t any of those it checks if you have used one of the special options, this loads the style you specified in the plugin settings in the admin control panel for either the top or the bottom. Then it checks if it isn’t any of those and you have passed it an array instead, if you have it calls another function which builds a custom widget based on what is specified in the array.

The function which builds the custom widget first checks to see if you’ve specified size and if you’ve set it to 32 then it add the option for 32px icons. It then loops through the services key which should be another array with a list of services you want to show. Then it checks to see if you’ve set a number of prefered icons to fill in and adds those to the widget. It checks to see if you’ve specified for the more button to be shown. Finally it checks to see if you’ve specified the counter, if you’ve set counter to true it shows the default or if you’ve set the counter to a string it uses that string as the counter style.


Have thoughts?

I love hearing feedback on my posts. You should head over to Twitter and let me know what you think!

Spotted a mistake? Why not suggest an edit!