Questo plugin non è stato testato con le ultime 3 versioni principali (major releases) di WordPress. Potrebbe non essere più mantenuto, o supportato, e potrebbe presentare problemi di compatibilità se utilizzato con versioni più recenti di WordPress.

WPSocialite

Descrizione

No one likes long load times, but we all want to be able to share our content via Facebook, Twitter, and other social networks. These take a long time to load. Paradox? Not anymore! With WPSocialite (utilizing David Bushell’s amazing SocialiteJS plugin [http://www.socialitejs.com/]) we can manage the loading process of our social sharing links. Load them on hover, on page scroll, and more!

Template Tag

<?php
$args = array(
    'size' => 'large', //choose which size buttons to display.
    'url' => 'http://google.com', //use this to override the url that is sent to WPSocialite. Not recommended to use in loop.
    'button_override' => 'facebook,twitter-share,twitter-follow,pinterest,linkedin,gplus,stumbleupon' //used to override buttons that are displayed. Add and remove as needed.
);
wpsocialite_markup( $args ); ?>

Shortcode

[wpsocialite size="small" url="http://google.com" button_override="facebook,twitter-share,twitter-follow,pinterest,linkedin,gplus,stumbleupon"]

Screenshot

  • WPSocialite shown before a post, before load.
  • WPSocialite shown before a post, after hover.
  • Plugin settings, located in Settings->Discussion

Installazione

  1. Download the wpsocialite folder and upload it to {your-wp-directory}/wp-content/plugins folder.
  2. Visit Your-website.com/wp-admin/plugins.php and activate WPSocialite.
  3. Head to Settings->Discussion and scroll to “WPSocialite” settings to configure the plugin.

Thats it!

FAQ

So what does this do?

WPSocialite uses socialite.js and implements it into the WordPress workflow, adding it automatically (or manually, if you choose) to your content.

Socialite.js allows us to define when we would like to load our social sharing links. For example, if we have a page with ten posts, each with their own set of Facebook Like, Google+ Share, and Twitter Share links, they could take some time to load. Using WPSocialite, you can load those individually when the user scrolls or hovers over a specific post.

Can I add the social links myself instead of letting the plugin place them?

Of course! Use the “manual” setting under the plugin settings (Settings->Discussion) and then use the following template tags in your template to display the links however you please.

The first template tag is to echo out the markup and display WPSocialite:

<?php wpsocialite_markup('large'); ?>

The second template tag is to get WPSocialite’s mark up and place it in an object, if needed:

<?php
    $wpsocialite =  get_wpsocialite_markup('small');
    echo $wpsocialite;
?>

When using this method, be sure to include “large” or “small” inside the function (as seen above) to define which style WPSocialite will use to display your social links.

You can also use the shortcode [wpsocialite size="large"] or [wpsocialite size="small"] in a post or page and it will display the social sharing buttons anywhere you like.

Can I disable the plugins script loading in order to manually add the CSS and Javascript myself?

Yes! By dropping the following code into your wp-config.php file you will tell the plugin to not load its CSS and Javascript and give you the ability to add it manually.

define('WPSOCIALITE_LOADSCRIPTS', false);

Setting this to false tells the plugin to not load any Javascript. If you want the plugin to automatically load it again, simply set this to true or remove it completely.

To stop the plugin from automatically loading its CSS, you would use the following line in the same way:

define( 'WPSOCIALITE_LOADSTYLES', false);

Please note, when using this method if you are loading any social networks with an external file (Pinterest, for example), you will also have to load the javascript file associated with the network (wpsocialite/Socialite/extensions/socialite.pinterest.js).

Recensioni

Non ci sono recensioni per questo plugin.

Contributi e sviluppo

“WPSocialite” è un software open source. Le persone che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.

Collaboratori

Traduci “WPSocialite” nella tua lingua.

Ti interessa lo sviluppo?

Esplora il Codice segui il Repository SVN iscriviti al Log delle Modifiche. Puoi farlo tramite RSS con un lettore di feed.

Changelog (registro delle modifiche)

2.4.1 October 10, 2013

  • Fixed issue with Twitter Username settings area not displaying.

2.4 September 3, 2013

  • Added twitter via option. Various bug fixes.

2.3 May 5, 2013

  • Fixed image function when using Pinit Button

2.2 April 24, 2013

  • Added StumbleUpon Social Sharing Button

2.1 – April 17, 2013

  • Bugfix – Twitter Username did not populate twitter follow button.

2.0 – February 9, 2013

  • Code Cleanup, added shortcode additions, Twitter Follow button.

1.6

  • Pinterest Fix

1.5

  • Adding shortcode option to display WpSocialite

1.4.5

  • Fixed in_array error being thrown due to post type check.

1.4.4

  • Fixed WP_Trip_excerpt Issue.

1.4.3

  • Adds localization support and allows you to select the CPT WPSocialite displays on.

1.4.2

  • Fixed Pinterest loading all at once. Corrected readme instructions for manual usage. Removed class selection option.

1.4.1

  • Quickfix for the issues with GIT and SVN Repo. Also added ability to disable autoloading CSS and JS. See FAQ for more information.

1.4

  • Cleaned up CSS and added media call to pinterest button.

1.3

  • Major Bugfix, CSS ID calls causing feed issues. Changed to classes.

1.2

  • Added ability to enable/disable different social networks. Choose which to display!
  • General repository and plugin cleanup.

1.1

  • Updated to latest version of SocialiteJS

1.0

  • First version, here goes nothing!