>
Download This Plugin | |
Download Elegant Themes | |
Name | Google Plus One Button |
Version | 0.1.2 |
Author | Michael Fields |
Rating | 60 |
Last updated | 2011-06-02 04:58:00 |
Downloads |
14917
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 4%, while Post page PageSpeed score has been degraded by 4%
Google Plus One Button plugin added 150 kB of resources to the Home page and 150 kB of resources to the sample Post page.
Google Plus One Button plugin added 1 new host(s) to the Home page and 1 new host(s) to the sample Post page.
Great! Google Plus One Button plugin ads no tables to your Wordpress blog database.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