I’ve updated the WP plugin to the latest and am trying to embed the share buttons in the header.php template. I’m having a few problems. The Google+ button only shows up in one size no matter what “type” I assign to it. The addthis doesn’t show up at all. Not sure if it’s a bug or not, but thought you should know. FB and TW buttons show up fine.
(edit: looks like NO parameters are being passed to plusone – it displays with all default settings no matter what) 🙄
echo wp_socializer(facebook, array(
‘output’ => ‘button’,
‘url’ => ‘http://www.mysite.com’,
‘title’ => ‘mysite.com’,
‘type’ => ‘like’,
‘style’ => ‘button_count’
));
echo wp_socializer(retweet, array(
‘output’ => ‘button’,
‘url’ => ‘http://www.mysite.com’,
‘title’ => ‘mysite.com’,
‘type’ => ‘compact’
));
echo wp_socializer(plusone, array(
‘output’ => ‘button’,
‘url’ => ‘http://www.mysite.com’,
‘title’ => ‘mysite.com’,
‘type’ => ‘small’
));
echo wp_socializer(addthis, array(
‘output’ => ‘button’,
‘url’ => ‘http://www.mysite.com’,
‘title’ => ‘mysite.com’,
‘type’ => ‘sharecount’
));
Secondly, it would be nice to have a wizard to output generic type of layouts so new users don’t have to hunt for these settings one by one. Just an idea.