Skip to content

Instantly share code, notes, and snippets.

@rossharper
rossharper / functions01.php
Created March 19, 2012 23:40
Registering sharing scripts with Wordpress
<?php
function register_sharing_scripts()
{
if( is_single() || is_home() )
{
wp_enqueue_script('twitter-share', 'http://platform.twitter.com/widgets.js', null, null, true);
wp_enqueue_script('facebook-share', 'http://static.ak.fbcdn.net/connect.php/js/FB.Share', null, null, true);
wp_enqueue_script('google-plusone', 'https://apis.google.com/js/plusone.js', array(), null, true);
}
}
@rossharper
rossharper / Sharing01.html
Created March 19, 2012 23:15
Twitter, Facebook, and Google+ share buttons for Wordpress
<div class="twitterbutton">
<a href="http://twitter.com/share"
class="twitter-share-button"
data-url="<?php the_permalink() ?>"
data-text="<?php the_title(); ?>"
data-count="none"
data-via="rossharper">
</a><!--<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>-->
</div>
<div class="facebookbutton">
@rossharper
rossharper / IncludeBlogShareScript.html
Created March 19, 2012 23:03
Including sharing.php in my blog
<div class="postfeaturebox">
<?php include(TEMPLATEPATH.'/sharing.php'); ?>
</div>