<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>Maverick Web Creations &#187; Yahoo Buzz</title>
	<atom:link href="http://www.maverickwebcreations.com/tag/yahoo-buzz/feed" rel="self" type="application/rss+xml" />
	<link>http://www.maverickwebcreations.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 05:37:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Add Yahoo Buzz Buttons to WordPress</title>
		<link>http://www.maverickwebcreations.com/2008/10/30/how-to-add-yahoo-buzz-buttons-to-wordpress.html</link>
		<comments>http://www.maverickwebcreations.com/2008/10/30/how-to-add-yahoo-buzz-buttons-to-wordpress.html#comments</comments>
		<pubDate>Thu, 30 Oct 2008 00:00:14 +0000</pubDate>
		<dc:creator>admin_mwc</dc:creator>
				<category><![CDATA[Wordpress Help]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[Yahoo Buzz]]></category>
		<guid isPermaLink="false">http://www.maverickwebcreations.com/?p=363</guid>
		<description><![CDATA[<p>Yahoo Buzz is a new player in the social news industry but I believe it will become a huge force to be reckoned with just because it is a Yahoo web site.</p>
<p>On Yahoo Buzz&#8217;s buttons page, it has 5 tips to get more votes:&#8230; <a href="http://www.maverickwebcreations.com/2008/10/30/how-to-add-yahoo-buzz-buttons-to-wordpress.html" class="read_more">Read more...</a></p>
Put Yahoo! Buzz buttons on]]></description>
			<content:encoded><![CDATA[<p>Yahoo Buzz is a new player in the social news industry but I believe it will become a huge force to be reckoned with just because it is a Yahoo web site.</p>
<p>On Yahoo Buzz&#8217;s buttons page, it has 5 tips to get more votes:</p>
<ol>
<li>Put Yahoo! Buzz buttons on everything you publish.</li>
<li>Consider adding two buttons for each story you publish: one at the top and one at the bottom.</li>
<li>We highly recommend the larger buttons with vote count.</li>
<li>Encourage your visitors to buzz up your stories and send them to friends.</li>
<li>See the bottom of this page for advanced button options.</li>
</ol>
<p>Since Yahoo recommends that we use the larger buttons with vote count, let&#8217;s use the &#8220;Square Button&#8221; of the &#8220;Buttons with Vote Count&#8221; list of buttons.</p>
<p><strong>Here’s How the Yahoo Button Will Look on Your Web Site…</strong></p>
<p><img src="http://www.maverickwebcreations.com/wp-content/uploads/2008/10/2008-10-28_161944.png" alt="How to Add Yahoo Buzz Buttons to WordPress" title="2008-10-28_161944" class="alignnone size-full wp-image-366" width="57" height="86" /></p>
<p>If your blog post has been submitted to Yahoo, you should see a Yahoo button with the number of votes only if there has been more than 1 vote for your post.</p>
<p><img src="http://www.maverickwebcreations.com/wp-content/uploads/2008/10/2008-10-28_161932.png" alt="How to Add Yahoo Buzz Buttons to WordPress" title="2008-10-28_161932" class="alignnone size-full wp-image-369" width="59" height="91" /></p>
<p>Most of the time, you should see something like the button above on your web site.</p>
<p><strong>Yahoo Buzz’s Integration Code</strong></p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://d.yimg.com/ds/badge2.js&quot; badgetype=&quot;square&quot;&gt;ARTICLEURL&lt;/script&gt;
</pre>
<p>There are other advanced options like:</p>
<pre class="brush: jscript; title: ; notranslate">
yahooBuzzArticleHeadline = &quot;Enter Story Headline Here&quot;
yahooBuzzArticleSummary = &quot;Enter Story Summary Here&quot;
yahooBuzzArticleCategory = &quot;Enter Story Category Here&quot;
yahooBuzzArticleType = &quot;Enter Media Type Here&quot;
yahooBuzzArticleId = window.location.href
</pre>
<p><strong>WordPress Default Theme’s single.php Template</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;p class=&quot;postmetadata alt&quot;&gt;
....................
&lt;/p&gt;
</pre>
<p>Although you may add this code to your index.php and archive.php templates, I would advice against it because it increases your page load times. </p>
<p><strong>What We Need to Do</strong></p>
<p>We need to delete &#8220;ARTICLEURL&#8221; and use the advanced codes &#8220;yahooBuzzArticleHeadline&#8221; and &#8220;yahooBuzzArticleId&#8221; and insert the Yahoo code somewhere within the <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.</p>
<p><strong>Yahoo Buzz Integration with WordPress with HTML and CSS</strong></p>
<pre class="brush: php; title: ; notranslate">&lt;p class=&quot;postmetadata alt&quot;&gt;
....................
&lt;/p&gt;
&lt;div class=&quot;social_news&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;yahooBuzzArticleHeadline = &quot;&lt;?php the_title(); ?&gt;&quot;;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;yahooBuzzArticleId = &quot;&lt;?php the_permalink() ?&gt;&quot;;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://d.yimg.com/ds/badge2.js&quot; badgetype=&quot;square&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="brush: css; title: ; notranslate">
.social_news
{
	margin: 0px 5px 0px 0px;
	padding: 0px;
	float: left;
}
</pre>
<p>You may display multiple buttons in a single row with the social_news class. That is how I displayed my voting buttons below. It has a 5 pixel margin on the right to leave a tiny gap in between buttons.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maverickwebcreations.com/2008/10/30/how-to-add-yahoo-buzz-buttons-to-wordpress.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

