Share on Google Buzz – link / button for your website
| Read next Mobile templates for Blogger websites | x |
This is a redundant post .
Publicize your blog post, by adding a link for ”Share on Google Buzz”. Your readers can easily share the Page on their Google Buzz Shared items, even if they have not subscribed to your blog’s feed.
Add any of the below code snippet to add “Share on Google Buzz” button / link.
(Note: if you want a text only link, please use
customText : “Share on Google Buzz!” instead of
customImage : ‘http://i50.tinypic.com/6hrqd3.png’
in any of the below code)
1. Adding the default “Share on Google Buzz” link to any webpage
<script src="http://orkut-share.googlecode.com/svn/trunk/GBuzz.js"> </script>
2. Adding a custom Image with “Share on Google Buzz” link
<script>
var GBuzz =
{customImage : 'http://i50.tinypic.com/6hrqd3.png'}
</script>
<script
src="http://orkut-share.googlecode.com/svn/trunk/GBuzz.js">
</script>
You can use your own Image by providing the Image url in the above code (In the place of http://i48.tinypic.com/9urbs9.png)
3. Sharing a custom URL, Page Title with default Image
<script>
var GBuzz = {url : 'http://www.didiknow.com',
title: 'Did I Know?'}
</script>
<script
src="http://orkut-share.googlecode.com/svn/trunk/GBuzz.js">
</script>
4. Sharing a custom URL, Page Title with a custom Image
<script>
var GBuzz= {url : 'http://www.didiknow.com',
title: 'Did I Know?',
customImage : 'http://i50.tinypic.com/6hrqd3.png'}
</script>
<script
src="http://orkut-share.googlecode.com/svn/trunk/GBuzz.js">
</script>
Do not forget to change the URL and Page title to your own URL and Page title.
Adding “Share on Google Buzz” link for Blogger blogs
<div class='post-footer'>
Default Google Buzz Share link
<script>
var GBuzz = {url : '<data:post.url/>',
title: '<data:post.title/>'}</script>
<script
src="http://orkut-share.googlecode.com/svn/trunk/GBuzz.js">
</script>
Custom Google Buzz Share button
<script>
var GBuzz = {url : '<data:post.url/>',
title: '<data:post.title/>',
customImage : 'http://i50.tinypic.com/6hrqd3.png'}
</script>
<script
src="http://orkut-share.googlecode.com/svn/trunk/GBuzz.js">
</script>
You can use your own Image by providing the Image url in the above code (In the place of http://i45.tinypic.com/25j9gue.png)
Adding Google Buzz share link to WordPress blog
Paste the following code on your single.php file, within the loop:
<a href="http://www.google.com/reader/link?title= <?php the_title();?>&url=<?php the_permalink();?>" target="_blank">Share on Google Buzz</a>
Instead of “Share on Google Buzz” text, you can use any image, like,
<a href="http://www.google.com/reader/link?title= <?php the_title();?>&url=<?php the_permalink();?>" target="_blank">< img src="http://i50.tinypic.com/6hrqd3.png" border=0></a>
You many also want to add Facebook, Digg, Buzz, Tweet buttons or/and
Delicious bookmark button + Counter for your website, Blogger blog or/and
Orkut Share link/button

