Last active
December 11, 2015 16:59
-
-
Save Shelob9/4631719 to your computer and use it in GitHub Desktop.
Reddit/ Twitter/ Facebook/ Google Plus sharing for WordPress without using plugins. I have included an example layout using Foundation Framework by ZURB. There is both a button to tweet the post, and a button to follow the post author, which is useful for multi-author blogs. You will need to get the Facebook Javascript SDK from Facebook Javascri…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
(function() { | |
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; | |
po.src = 'https://apis.google.com/js/plusone.js'; | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); | |
})(); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*For hiding the fb likes count */ | |
/* make the like button smaller */ | |
/* http://stackoverflow.com/a/6326964/1469799 */ | |
.facebook { | |
position: relative; | |
width: 46px; | |
height: 21px; | |
} | |
.facebook_hide_count { | |
width: 100px; | |
height: 21px; | |
background: white; | |
position: absolute; | |
left: 46px; | |
top: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment