Over the years, social media has become one of those inevitable elements
in our lives that you just can’t escape, even if you wanted to.
Twitter
Pinterest
Facebook
Reddit
Linkedin
http://twitter.com/intent/tweet?status=[TITLE]+[URL]
http://pinterest.com/pin/create/bookmarklet/?
media=[MEDIA]&url=[URL]&is_video=false&description=[TITLE]
http://www.facebook.com/share.php?u=[URL]&title=[TITLE]
According to Frédéric, supposedly the URL syntax above for Facebook has been deprecated, even though so far it seems to be still working for me, but just in case here is the new one for future reference.http://www.facebook.com/sharer/sharer.php?u=[URL]&title=[TITLE]
Facebook no longer supports custom parameters inBut this is not entirely correct. Well, maybe they do not support or endorse them, but custom parameters can be used if you know the correct names. These include:sharer.php
- URL (of course) →
u - custom image →
picture - custom title →
title - custom quote →
quote - custom description →
description
https://www.facebook.com/sharer.php?caption=[caption]&description=[description]&u=[website]&picture=[image-url]
Google+
https://plus.google.com/share?url=[URL]
http://www.reddit.com/submit?url=[URL]&title=[TITLE]
Delicious
http://del.icio.us/post?url=[URL]&title=[TITLE]¬es=[DESCRIPTION]
Digg
https://digg.com/submit?url=[URL]&title=[TITLE]
Tapiture
http://tapiture.com/bookmarklet/image?img_src=[IMAGE]&page_url=[URL]&
page_title=[TITLE]&img_title=[TITLE]&img_width=[IMG WIDTH]img_height=[IMG HEIGHT]
StumbleUpon
http://www.stumbleupon.com/submit?url=[URL]&title=[TITLE]
http://www.linkedin.com/shareArticle?mini=true&url=[URL]&
title=[TITLE]&source=[SOURCE/DOMAIN]
Slashdot
http://slashdot.org/bookmark.pl?url=[URL]&title=[TITLE]
Technorati
http://technorati.com/faves?add=[URL]&title=[TITLE]
Posterous
http://posterous.com/share?linkto=[URL]
Tumblr
http://www.tumblr.com/share?v=3&u=[URL]&t=[TITLE]
Google Bookmarks
http://www.google.com/bookmarks/mark?op=edit&bkmk=[URL]&title=[title]&
annotation=[DESCRIPTION]
Newsvine
http://www.newsvine.com/_tools/seed&save?u=[URL]&h=[TITLE]
Ping.fm
http://ping.fm/ref/?link=[URL]&title=[TITLE]&body=[DESCRIPTION]
Evernote
http://www.evernote.com/clip.action?url=[URL]&title=[TITLE]
Friendfeed
http://www.friendfeed.com/share?url=[URL]&title=[TITLE]
This a great list listing most popular social services but I have struggled finding what the syntax for an email button should be like. If you are a developer, you are most likely familiar with syntax for an email link. What you need to accomplish the desired outcome, your markup should looks something along these lines:<a href="mailto:?subject=[TITLE]&body=Check out this site I came across
[URL]">[EMAIL]</a>
Follow Buttons
I’ve been just recently asked if I knew about a way to create a “follow” buttons without any plugin. So far I’ve only looked into Twitter’s syntax for a follow button and this is what I got:<a href="https://twitter.com/intent/follow?original_referer=[URL]/&
region=follow_link&screen_name=[YOUR TWITTER HANDLE]&tw_p=followbutton"
onclick="_gaq.push(['_trackEvent', 'outbound-article',
'https://twitter.com/intent/follow?original_referer=
[URL]/®ion=follow_link&screen_name=[YOUR TWITTER HANDLE]&tw_p=followbutton',
'Follow @[YOUR TWITTER HANDLE]']);">Follow @[YOUR TWITTER HANDLE]</a>
Having this site in WordPress, I wanted to test it of course. Using WordPress codex functions, all I had to do was to substitute the [TITLE] with:<?php print(urlencode(the_title())); ?>
…and [URL] with:
<?php print(urlencode(get_permalink())); ?>
I hope you find this information helpful for creating social media buttons with custom icons. Feel free to let me know in comments below.
No comments:
Post a Comment