Allows fast and easy integration of the Google +1 button.
Add Google +1 (Plus One) buttons throughout your website. Built using best practices in WordPress plugin development providing you a safe and secure way to add this feature to your posts and pages. There are many options available for customization. Please read below for details.
If you find that the automatic options are limiting in any way, you can un-select all of them and use the mfields-plus-one-button action directly in your theme files. Below you will find examples of different ways to customize the action.
/**
* Default usage.
* Should be used inside The Loop.
*/
do_action( 'mfields-plus-one-button' );
/**
* Small button with count.
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'small',
'count' => 'true',
) );
/**
* Small button without count.
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'small',
'count' => 'false',
) );
/**
* Medium button with count.
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'medium',
'count' => 'true',
) );
/**
* Medium button without count.
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'medium',
'count' => 'false',
) );
/**
* Tall button.
* Count is always displayed with this size.
* Passing the 'count' argument will have no effect.
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'tall',
) );
/**
* Medium button.
* Count will be shown.
* Custom url is provided.
* This example shows the best way to use this action
* outside of The Loop.
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'medium',
'count' => 'true',
'url' => 'http://mfields.org/',
) );
/**
* Medium button.
* Count will be shown.
* Custom url is provided.
* Markup is set to "html".
*/
do_action( 'mfields-plus-one-button', array(
'size' => 'medium',
'count' => 'true',
'url' => 'http://mfields.org/',
'markup' => 'html',
) );
If you have questions about integrating this plugin into your site, please add a new thread to the WordPress Support Forum. I try to answer these, but I may not always be able to. In the event that I cannot there may be someone else who can help.
Development of this plugin is hosted in a public repository on Github. If you find a bug in this plugin or have a suggestion to make it better, please create a new issue
Requires: 3.1 or higher
Compatible up to: 3.2-beta2-18055
Last Updated: 2011-6-2
Downloads: 14,505
Got something to say? Need help?