<?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>U Stand Out: Social Media &#187; Wordpress</title>
	<atom:link href="http://UStandOut.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://UStandOut.com</link>
	<description>Social Media &#38; Internet Marketing Trends</description>
	<lastBuildDate>Fri, 27 Aug 2010 15:27:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Add Author Box to your Wordpress Post Footers</title>
		<link>http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers</link>
		<comments>http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers#comments</comments>
		<pubDate>Sun, 20 Jun 2010 13:26:10 +0000</pubDate>
		<dc:creator>Diana Freedman</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://UStandOut.com/?p=1227</guid>
		<description><![CDATA[Adding an author box to your blog posts will help build your personal brand. Learn how to add an author post box to your Wordpress blog &#038; Thesis theme.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers" title="Permanent link to How to Add Author Box to your Wordpress Post Footers"><img class="post_image alignleft" src="http://ustandout.com/wp-content/uploads/2010/06/wordpress_thumb.jpg" width="150" height="153" alt="Wordpress Logo" /></a>
</p><div style="float: right; margin-left: 5px; margin-top: 5px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="How to Add Author Box to your Wordpress Post Footers" data-via="dianafreedman" data-url="http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers" data-count="vertical" data-via="dianafreedman" data-related=":">Tweet</a></div><p>Adding an author box to your post footers will help build your personal brand on your blog. An about the author box helps your visitors get to know you, especially first time visitors. And it also is useful on blogs like this that are not personal FIRSTNAMELASTNAME.com blogs, and the picture helps personalize the post. This post will show you how to add an author post box to your Wordpress blog, as well as to the <a href="http://www.shareasale.com/r.cfm?b=202503&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis theme</a>.</p>
<p><span id="more-1227"></span></p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/06/authorbox.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="author-box" src="http://ustandout.com/wp-content/uploads/2010/06/authorbox_thumb.jpg" border="0" alt="author-box" width="494" height="167" /></a></p>
<h2>Step One: Add Bio Info</h2>
<p>In your Wordpress dashboard, go to “users” and then “your profile” in the left column. Scroll down to the box “biographical info” and click “update profile.” The code we’ll add to your theme pulls the information right from your profile.</p>
<h2>Step Two: Add the Box</h2>
<p>Open your single.php file and locate the section that is the bottom of the post, right before the comments begin. Every Wordpress theme is different, but you’ll want to place the code below <strong>before</strong> the line “&lt;?php comments_template(); ?&gt;”.</p>
<pre>&lt;div id="authorbox"&gt;   &lt;?php if (function_exists('get_avatar')) { echo get_avatar( get_the_author_email(), '80' ); }?&gt;
  &lt;div class="authortext"&gt;
    &lt;h4&gt;About &lt;?php the_author_posts_link(); ?&gt;&lt;/h4&gt;
    &lt;p&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;     &lt;/div&gt;
&lt;/div&gt;</pre>
<p>This code calls a <a href="http://en.gravatar.com" target="_blank">Gravatar</a>, which pulls a profile image based on the one you’ve assigned to your email address. If you don’t have a <a href="http://en.gravatar.com" target="_blank">Gravatar</a> account, go set one up for free.</p>
<p>If you are using the <a href="http://www.shareasale.com/r.cfm?b=202503&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis theme</a>, you’ll want to add the following code to the custom_functions.php file:</p>
<pre>function post_footer() { if (is_single())
{
?&gt;
&lt;div id="authorbox"&gt;
  &lt;?php if (function_exists('get_avatar')) { echo get_avatar( get_the_author_email(), '80' ); }?&gt;
    &lt;div class="authortext"&gt;
      &lt;h4&gt;About &lt;?php the_author_posts_link(); ?&gt;&lt;/h4&gt;
      &lt;p&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
}
}
add_action('thesis_hook_after_post_box', 'post_footer')</pre>
<h2>Step Three: Style the Box</h2>
<p>Add the following code to your style.css (and if you’re using <a href="http://www.shareasale.com/r.cfm?b=202503&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a>, add it to your custom.css file).</p>
<pre>/* AUTHOR BOX */
#authorbox {background:#fcf8d7; border:1px solid #e2dede; width:495px; margin:0 auto; margin-bottom:0px; overflow:hidden; padding:10px;}
#authorbox h4 {font-size:16px; color:#5a5a55; margin:0; padding:0;}
.authortext {padding-left:100px;}
#authorbox img {margin:0; padding:0px; float:left; border:5px solid #e2dede;}
#authorbox p {color:#5a5a55; margin:0; padding:0px; font-size:10px;}
#authorbox h4 &gt; a {text-decoration:none;}
#authorbox a {font-weight:bold;}</pre>
<p>Modify the CSS to match your blog’s theme; otherwise it will look like mine.</p>
<p>That’s it! Let me know if you have any questions in the comments below.<strong>Related Posts:</strong>
<ul class="similar-posts">
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/facebook/add-facebook-button-blog"><img src="http://ustandout.com/wp-content/uploads/2010/04/facebooklikebutton_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/facebook/add-facebook-button-blog" rel="bookmark" title="April 22, 2010">How to Add the Facebook Like Button to Your Blog</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/blogging/wordpress-thesis-theme-review"><img src="http://ustandout.com/wp-content/uploads/2010/06/thesislogo.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/blogging/wordpress-thesis-theme-review" rel="bookmark" title="June 19, 2010">Wordpress Thesis Theme Review &#8211; 8 Reasons to Switch</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/official-twitter-button"><img src="http://ustandout.com/wp-content/uploads/2010/08/official_tweet_button_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/official-twitter-button" rel="bookmark" title="August 13, 2010">How to Add Official Twitter Button to Your Site or Blog</a></li>
</div>
</div>
</ul>
<p><!-- Similar Posts took 12.361 ms --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;t=How+to+Add+Author+Box+to+your+Wordpress+Post+Footers" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40dianafreedman+How+to+Add+Author+Box+to+your+Wordpress+Post+Footers+-+http://su.pr/22edxY&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;title=How+to+Add+Author+Box+to+your+Wordpress+Post+Footers" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;title=How+to+Add+Author+Box+to+your+Wordpress+Post+Footers&amp;summary=Adding%20an%20author%20box%20to%20your%20blog%20posts%20will%20help%20build%20your%20personal%20brand.%20Learn%20how%20to%20add%20an%20author%20post%20box%20to%20your%20Wordpress%20blog%20%26%20Thesis%20theme.&amp;source=U Stand Out: Social Media" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;title=How+to+Add+Author+Box+to+your+Wordpress+Post+Footers" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;title=How+to+Add+Author+Box+to+your+Wordpress+Post+Footers" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;title=How+to+Add+Author+Box+to+your+Wordpress+Post+Footers" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Thesis Theme Review &#8211; 8 Reasons to Switch</title>
		<link>http://UStandOut.com/blogging/wordpress-thesis-theme-review</link>
		<comments>http://UStandOut.com/blogging/wordpress-thesis-theme-review#comments</comments>
		<pubDate>Sun, 20 Jun 2010 01:34:25 +0000</pubDate>
		<dc:creator>Diana Freedman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://UStandOut.com/?p=1220</guid>
		<description><![CDATA[The Thesis theme for Wordpress is customizable, SEO friendly, loads fast, and has excellent user support. Find out why top bloggers use Thesis.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://UStandOut.com/blogging/wordpress-thesis-theme-review" title="Permanent link to Wordpress Thesis Theme Review &#8211; 8 Reasons to Switch"><img class="post_image alignleft" src="http://ustandout.com/wp-content/uploads/2010/06/thesislogo.jpg" width="197" height="165" alt="Thesis Logo" /></a>
</p><div style="float: right; margin-left: 5px; margin-top: 5px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="Wordpress Thesis Theme Review &#8211; 8 Reasons to Switch" data-via="dianafreedman" data-url="http://UStandOut.com/blogging/wordpress-thesis-theme-review" data-count="vertical" data-via="dianafreedman" data-related=":">Tweet</a></div><p><a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> is an amazing Wordpress theme. I recently made the switch to the <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> theme from the free <a href="http://www.flexibilitytheme.com/download/" target="_blank">Flexibility 2</a> theme, and I can already tell that it was a worthwhile investment. When I was looking for a new Wordpress theme, my main criteria were customizability, SEO friendliness, fast load times, and excellent user support. By choosing <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a>, I got all this and SO much more.</p>
<p class="recommended"><a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Download the Latest Version of Thesis</a> &gt;&gt;</p>
<p><span id="more-1220"></span></p>
<h2>1. Fully Customizable</h2>
<p><a href="http://ustandout.com/wp-content/uploads/2010/06/thesiscustomizations.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="thesis-customizations" src="http://ustandout.com/wp-content/uploads/2010/06/thesiscustomizations_thumb.jpg" border="0" alt="thesis-customizations" width="513" height="269" /></a></p>
<p>When it comes to customizations, the sky is the limit. Even if you’re a novice at programming and CSS, Thesis makes it pretty foolproof. Instead of having to modify core theme files and risk breaking your blog, like you do with most free Wordpress themes, you won’t have this problem with <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a>. The only two files you’ll have to customize are <em>custom.css </em>and <em>custom_functions.php</em>. This also means that when making future Thesis upgrades, your customizations will carry through to the new version, so you won’t have to redo all of your hard work.</p>
<p>As long as you know enough CSS and PHP to be able to take pre-existing code and modify it for your own needs, you can make your theme look EXACTLY how you want it. There’s also a nifty little plugin called Thesis OpenHook that lets you place your custom code anywhere on your blog, including before content, before or after sidebars, in the header, in the footer, etc.</p>
<h2>2. Outstanding Support</h2>
<p>This, in my opinion, is one of the biggest advantages of the <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis Wordpress theme</a>. The support is simply amazing. After buying the theme, future upgrades are <strong>free</strong>. And if you have any questions about the theme, the Thesis community forum is excellent about answering your questions quickly. The team answers anything from setup and implementation to plugin integration and advanced customizations, and usually within a couple hours (in my experience, and a  day at most).</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/06/thesissupportforum.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="thesis-support-forum" src="http://ustandout.com/wp-content/uploads/2010/06/thesissupportforum_thumb.jpg" border="0" alt="thesis-support-forum" width="499" height="222" /></a></p>
<p>The support team really goes out of its way to help people customize their blogs with <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a>, and you simply don’t get this with free themes.</p>
<h2>3. SEO Friendly</h2>
<p>The <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> theme was developed with search engine optimization (SEO) in mind. I’d have to say that most themes out there, especially the free ones, have so much code bloat. They prioritize fancy designs over SEO, and the code just weighs those themes down. Remember: it’s not the <strong>design</strong> that gets you search engine traffic; it’s the <strong>content</strong> and <strong>SEO</strong>. If you have tons of messy code above your content, the engine crawlers are going to see the mess first, rather than your high-value content.</p>
<p><a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> has very clean code, and the only two files you need to customize are called from externally, so even the fanciest designs maintain a clean code structure. It also eliminates the need for the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in One SEO Pack</a> plugin, as you can specify each post’s meta tags within the theme’s functionality.</p>
<h2>4. Easy to Use</h2>
<p>If you’re a true novice when it comes to coding, <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> is good to go out of the box. The initial design is very professional looking, and the Design Options page allows you to make font, color, site layout, and image customizations. One feature I personally love is the ability to change the column layout without having to go into the code and risk breaking the universe.</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/06/thesiscolumns.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="thesis-columns" src="http://ustandout.com/wp-content/uploads/2010/06/thesiscolumns_thumb.jpg" border="0" alt="thesis-columns" width="231" height="244" /></a></p>
<p>All you have to do is choose between a two and three-column layout, and simply click the radio button next to the column order you’d prefer. And it was so easy for me to make other customizations, such as adding thumbnails next to my popular posts in the right column. <strong>Since making the switch to <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a>, my blog’s bounce rate has decreased nearly 20%</strong>, and I simply wouldn’t have been able to figure out how to make these customizations with a free theme.</p>
<h2>5. Highly Successful Bloggers use Thesis</h2>
<p>Having endorsement from very successful bloggers who use the <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis Wordpress theme</a> on their own blogs made a big impression on me. Here are just some of the top blogs that use Thesis:</p>
<ul>
<li><a title="Problogger" href="http://problogger.net" target="_blank">Problogger</a></li>
<li><a href="http://chrisbrogan.com" target="_blank">Chris Brogan</a></li>
<li><a href="http://twitip.com" target="_blank">Twitip</a></li>
<li><a href="http://copyblogger.com" target="_blank">Copyblogger</a></li>
<li><a href="http://simplemom.net" target="_blank">SimpleMom</a></li>
</ul>
<h2>6. Eliminates the Need for Many Plugins</h2>
<p>Because of the extensive customization options and outstanding support community, you can easily implement changes using <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> Hooks that eliminate the need for certain plugins. For example, I was able to easily add page numbers to the bottom of my homepage and get rid of <a href="http://wordpress.org/extend/plugins/wp-pagenavi/" target="_blank">Pagenavi </a>simply by searching the support forum for how to do this, and copy/pasting a couple bits of code into <em>custom.css </em>and <em>custom_functions.php</em>.</p>
<p>Eliminating plugins will reduce the amount of php calls on your blog pages, and <strong>increase your blog’s page load time</strong>.</p>
<h2>7. Fast Load Time</h2>
<p>Again, I really need to emphasize the importance of having a fast page-load time. With my last theme, the code was so bloated that my blog loaded so slowly, even after I eliminated all plugins to test out how fast it would load. Because the <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> framework is so clean and SEO friendly, you also get the benefit of extremely quick load time (barring your use of certain plugins). Remember, the faster your page load times, the less frustrated your readers will be, and the lower your bounce rate.</p>
<h2>8. The “Big Ass Save Button”</h2>
<p>When I first installed <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> and went to one of the customization pages, I literally laughed out loud when I saw the save button:</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/06/thesisbigasssavebutton.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="thesis-big-ass-save-button" src="http://ustandout.com/wp-content/uploads/2010/06/thesisbigasssavebutton_thumb.jpg" border="0" alt="thesis-big-ass-save-button" width="311" height="80" /></a></p>
<p>I mean, really, that’s just awesome.</p>
<h2>In Conclusion…</h2>
<p>This doesn’t even cover all of the unique features <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> has to offer. But one hesitation that many people have about Thesis, including myself, is the price tag. The personal option runs at $87, and the developer’s option is $164. I chose the developer’s option so that I can implement <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> on all of my blogs, and so that I can offer Thesis to clients at a much smaller licensing fee. (So if you want to <a title="Contact" href="http://ustandout.com/contact" target="_blank">hire me to set up or improve your blog</a>,  consider yourself having saved $87.) I personally decided that the theme would ultimately pay for itself, as it’s now so much easier to monetize this blog, and you can probably apply the same logic to your own blog. It’s simply worth it.</p>
<p><strong>Disclaimer:</strong> Yes, all the links to <a href="http://www.shareasale.com/r.cfm?b=198392&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank">Thesis</a> in this post are affiliate links. If you do decide on purchasing Thesis, I would appreciate it if you used the links. <img src='http://UStandOut.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://www.shareasale.com/r.cfm?b=202503&amp;u=439443&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank"><img src="http://www.shareasale.com/image/24570/468x60.png" border="0" alt="Thesis Theme for WordPress:  Options Galore and a Helpful Support Community" /></a><strong>Related Posts:</strong>
<ul class="similar-posts">
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers"><img src="http://ustandout.com/wp-content/uploads/2010/06/wordpress_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers" rel="bookmark" title="June 20, 2010">How to Add Author Box to your Wordpress Post Footers</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/facebook/add-facebook-button-blog"><img src="http://ustandout.com/wp-content/uploads/2010/04/facebooklikebutton_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/facebook/add-facebook-button-blog" rel="bookmark" title="April 22, 2010">How to Add the Facebook Like Button to Your Blog</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/official-twitter-button"><img src="http://ustandout.com/wp-content/uploads/2010/08/official_tweet_button_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/official-twitter-button" rel="bookmark" title="August 13, 2010">How to Add Official Twitter Button to Your Site or Blog</a></li>
</div>
</div>
</ul>
<p><!-- Similar Posts took 6.163 ms --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;t=Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40dianafreedman+Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch+-+http://su.pr/5jBmoM&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;title=Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;title=Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch&amp;summary=The%20Thesis%20theme%20for%20Wordpress%20is%20customizable%2C%20SEO%20friendly%2C%20loads%20fast%2C%20and%20has%20excellent%20user%20support.%20Find%20out%20why%20top%20bloggers%20use%20Thesis.&amp;source=U Stand Out: Social Media" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;title=Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;title=Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;title=Wordpress+Thesis+Theme+Review+-+8+Reasons+to+Switch" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://UStandOut.com/blogging/wordpress-thesis-theme-review&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://UStandOut.com/blogging/wordpress-thesis-theme-review/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Add the Facebook Like Button to Your Blog</title>
		<link>http://UStandOut.com/facebook/add-facebook-button-blog</link>
		<comments>http://UStandOut.com/facebook/add-facebook-button-blog#comments</comments>
		<pubDate>Fri, 23 Apr 2010 01:50:36 +0000</pubDate>
		<dc:creator>Diana Freedman</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[facebook like button]]></category>
		<category><![CDATA[social plugins]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://UStandOut.com/?p=1089</guid>
		<description><![CDATA[Add the Facebook Like button to your website or Wordpress blog, and let users share your content with all of their Facebook friends in just one click.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://UStandOut.com/facebook/add-facebook-button-blog" title="Permanent link to How to Add the Facebook Like Button to Your Blog"><img class="post_image alignleft" src="http://ustandout.com/wp-content/uploads/2010/04/facebooklikebutton_thumb.jpg" width="154" height="139" alt="Facebook Like Thumbs Up" /></a>
</p><div style="float: right; margin-left: 5px; margin-top: 5px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="How to Add the Facebook Like Button to Your Blog" data-via="dianafreedman" data-url="http://UStandOut.com/facebook/add-facebook-button-blog" data-count="vertical" data-via="dianafreedman" data-related=":">Tweet</a></div><p>You might have noticed that Facebook has gone a bit “like” crazy this week. One major change affected <a href="http://ustandout.com/facebook/facebook-fan-page-landing-page" target="_blank">fan pages</a>: instead of becoming a fan of a page like Coca-Cola, you now “like” the brand. Facebook also introduced a “Like” button that could be added to any page on the internet. This little like button is the easiest way to share content yet. With just one click, a user can share your content with all of his or her Facebook friends.<span id="more-1089"></span></p>
<p>On Facebook, you can tell your friends if you’re interested in their status updates, posts, photos, or videos by clicking “like.” At the F8 conference this week, Facebook revealed a new social plugin that allows any webpage to add a “like” button and reap the benefits of this viral functionality. Although this new feature is integrated onto Typepad, there isn’t yet a customizable plugin for Wordpress. Here’s how to easily add the Facebook like button to any website, including a Wordpress blog:</p>
<h3>1. <strong>Get the Like button code</strong></h3>
<p>This is the only code you’ll need to install the Facebook Like button on your Wordpress blog. It will automatically detect your post title.</p>
<pre>&lt;iframe src="http://www.facebook.com/plugins/like.php?href=&lt;?php echo
urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;amp;layout=standard&amp;amp;
show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;colorscheme=light"
scrolling="no" frameborder="0" allowTransparency="true" style="border:none;
overflow:hidden; width:450px; height:60px"&gt;&lt;/iframe&gt;</pre>
<p><strong>Please note</strong> that if you are adding this code to a website OTHER THAN a Wordpress blog, use this code instead and customize the &#8220;URL.com&#8221; for your own domain name:</p>
<pre>&lt;iframe src="http://www.facebook.com/plugins/like.php?href=http://URL.com
&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;
colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true"
style="border:none; overflow:hidden; width:450px; height:60px"&gt;&lt;/iframe&gt;</pre>
<h3>2. Choose the button type</h3>
<p>If you’d like to use the standard Like button, keep the code above the same (layout=standard).</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/04/image.png"><img style="display: inline; border: 0px;" title="image" src="http://ustandout.com/wp-content/uploads/2010/04/image_thumb.png" border="0" alt="image" width="290" height="77" /></a></p>
<p>If you’d like to use the button count version of the Like button, change “layout=standard” to “layout=button_count”.</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/04/image1.png"><img style="display: inline; border: 0px;" title="image" src="http://ustandout.com/wp-content/uploads/2010/04/image_thumb1.png" border="0" alt="image" width="109" height="41" /></a></p>
<h3>3. Customize your Like button</h3>
<p>There are various customizations you can make to your Like button, all of which you can see on the official <a href="http://developers.facebook.com/docs/reference/plugins/like" target="_blank">like button social plugins page</a> on Facebook’s developer site.</p>
<ul>
<li><strong>Show faces or not:</strong> Show faces of your friends with “show_faces=true” or not with “show_faces=false”</li>
<li><strong>Like vs. recommend:</strong> Have a like button with “action=like” or a recommend button with “action=recommend”<br />
<a href="http://ustandout.com/wp-content/uploads/2010/04/image2.png"><img style="display: inline; border: 0px;" title="image" src="http://ustandout.com/wp-content/uploads/2010/04/image_thumb2.png" border="0" alt="image" width="148" height="49" /></a></li>
<li><strong>Color scheme options:</strong> If you have a light color scheme on your webpage, choose the correct contrast with “colorscheme=light”; if you have a dark color scheme, use “colorscheme=dark”</li>
<li><strong>Border:</strong> Add a border by changing “border:none;” to “border:1px;”</li>
</ul>
<h3>4. Adding the code to Wordpress</h3>
<p><strong>Adding the Like button to each post</strong></p>
<p>Open your single.php file and look for <strong>the_content()</strong>. Each theme will be coded differently, but this php call should always appear. I’ve added my code above the <strong>the_content() </strong>code so the like button appears at the top of my posts. You can choose to add the button below your posts by inserting the code below <strong>the_content()</strong>.</p>
<p><strong>Adding the Like button on your homepage</strong></p>
<p>If you also want the like button to appear above each post on your homepage, like I do here at U Stand Out, open your index.php file and look for <strong>the_content()</strong>. Just as you did for single.php, add the code above the php code for <strong>the_content(). </strong>You can also simply add the code to a sidebar widget to give your readers the option to “like” your blog’s homepage.</p>
<p><strong>Let me know if you have any questions in the comments below!</strong><strong>Related Posts:</strong>
<ul class="similar-posts">
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/official-twitter-button"><img src="http://ustandout.com/wp-content/uploads/2010/08/official_tweet_button_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/official-twitter-button" rel="bookmark" title="August 13, 2010">How to Add Official Twitter Button to Your Site or Blog</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/facebook/facebook-page-likes-exclusive-content"><img src="http://ustandout.com/wp-content/uploads/2010/06/facebooklock_thumb1.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/facebook/facebook-page-likes-exclusive-content" rel="bookmark" title="June 20, 2010">How to Get More Facebook Page Likes Using Exclusive Content</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers"><img src="http://ustandout.com/wp-content/uploads/2010/06/wordpress_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/wordpress/add-author-box-wordpress-post-footers" rel="bookmark" title="June 20, 2010">How to Add Author Box to your Wordpress Post Footers</a></li>
</div>
</div>
</ul>
<p><!-- Similar Posts took 7.632 ms --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://UStandOut.com/facebook/add-facebook-button-blog&amp;t=How+to+Add+the+Facebook+Like+Button+to+Your+Blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40dianafreedman+How+to+Add+the+Facebook+Like+Button+to+Your+Blog+-+http://su.pr/9k6UXg&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://UStandOut.com/facebook/add-facebook-button-blog&amp;title=How+to+Add+the+Facebook+Like+Button+to+Your+Blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://UStandOut.com/facebook/add-facebook-button-blog&amp;title=How+to+Add+the+Facebook+Like+Button+to+Your+Blog&amp;summary=Add%20the%20Facebook%20Like%20button%20to%20your%20website%20or%20Wordpress%20blog%2C%20and%20let%20users%20share%20your%20content%20with%20all%20of%20their%20Facebook%20friends%20in%20just%20one%20click.&amp;source=U Stand Out: Social Media" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://UStandOut.com/facebook/add-facebook-button-blog&amp;title=How+to+Add+the+Facebook+Like+Button+to+Your+Blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://UStandOut.com/facebook/add-facebook-button-blog&amp;title=How+to+Add+the+Facebook+Like+Button+to+Your+Blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://UStandOut.com/facebook/add-facebook-button-blog&amp;title=How+to+Add+the+Facebook+Like+Button+to+Your+Blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://UStandOut.com/facebook/add-facebook-button-blog&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://UStandOut.com/facebook/add-facebook-button-blog/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>How to Add Google Buzz To Your Wordpress Blog</title>
		<link>http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog</link>
		<comments>http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog#comments</comments>
		<pubDate>Wed, 17 Feb 2010 12:30:19 +0000</pubDate>
		<dc:creator>Diana Freedman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[Google Buzz]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Social Bookmark]]></category>

		<guid isPermaLink="false">http://UStandOut.com/?p=822</guid>
		<description><![CDATA[Add Google Buzz to your Wordpress blog using Wordpress plugins. Your social media strategy should include Google Buzz, a new internet marketing tool.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog" title="Permanent link to How to Add Google Buzz To Your Wordpress Blog"><img class="post_image alignleft" src="http://ustandout.com/wp-content/uploads/2010/02/wordpressgooglebuzz_thumb.jpg" width="154" height="174" alt="Wordpress Google Buzz" /></a>
</p><div style="float: right; margin-left: 5px; margin-top: 5px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="How to Add Google Buzz To Your Wordpress Blog" data-via="dianafreedman" data-url="http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog" data-count="vertical" data-via="dianafreedman" data-related=":">Tweet</a></div><p><a href="buzz.google.com" target="_blank">Google Buzz</a> is the latest hot topic in social media. Whether it will ultimately be a hit or a flop, many blogs are already incorporating the button into each post, just like <a href="http://tweetmeme.com/about/retweet_button" target="_blank">Tweetmeme’s retweet button</a> and <a href="http://www.fbshare.me/" target="_blank">Facebook’s sharecount button</a>.</p>
<p>There are several plugins and methods you can use to add the Google Buzz button to your <a href="http://wordpress.org" target="_blank">Wordpress</a> blog, at least until Google comes out with an official button. Here are the best methods I’ve found for adding Google Buzz as a share count button, a sidebar widget, and a social share chicklet:</p>
<p><span id="more-822"></span></p>
<h3>Google Buzz Share Count Button: WP-Buzzer</h3>
<p>Although there are several varieties of Wordpress plugins, <a href="http://hameedullah.com/wordpress/wpbuzzer" target="_blank">WP-Buzzer</a> by Hameedula is the must customizable button in terms of placement of the button in your post. This is important to bloggers who want to line up the Google Buzz button with other share count buttons (such as <a href="http://tweetmeme.com/about/retweet_button" target="_blank">Tweetmeme</a> and <a href="http://www.fbshare.me/" target="_blank">Facebook sharecount</a>). As you can see below, I’ve chosen the default “float: right” position, so the button will line up with my other Twitter and Facebook buttons.</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/02/wpbuzz.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="wpbuzz" src="http://ustandout.com/wp-content/uploads/2010/02/wpbuzz_thumb.jpg" border="0" alt="wpbuzz" width="350" height="304" /></a></p>
<p><strong>How to line up Google Buzz button with Tweetmeme’s Retweet button:</strong></p>
<p>If you already have the <a href="http://tweetmeme.com/about/retweet_button" target="_blank">Tweetmeme</a> button installed, this Google Buzz button doesn’t line up correctly at all. Additionally, the button is kind of clunky; you can see the pixilated edges. We’re going to fix that.</p>
<ol>
<li>Upload the wp-buzzer plugin to your blog. Do not yet activate it.</li>
<li>Save this png file to your computer as googlebuzz.png:<img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="googlebuzz" src="http://ustandout.com/wp-content/uploads/2010/02/googlebuzz_thumb.png" border="0" alt="googlebuzz" width="50" height="70" /></li>
<li>Upload this image to the folder /wp-content/plugins/wpbuzzer</li>
<li>Go to your installed plugins page and click “edit” under the wp-buzzer plugin.</li>
<li>Search for the following text: background-image: $style = &#8217;style=&#8221;height: 58px; width:50px;  background-image: url(&#8216; . WP_PLUGIN_URL . &#8216;/wpbuzzer/wpbuzzer-google-buzz-big.png)</li>
<li>Change “wpbuzzer-google-buzz-big.png” to “googlebuzz.png”</li>
<li>Add “padding-top:12px;” after “width:50px;”</li>
<li>Click save. That should be it!</li>
</ol>
<h3>Google Buzz Sidebar Widget: Google Buzz ER</h3>
<p>The <a href="http://wordpress.org/extend/plugins/google-buzz-er/" target="_blank">Google Buzz ER</a> widget will display your public Google Buzz content on your blog. Simply upload the plugin to your blog, and in the plugin settings enter your Google username, create a title, and define how many Buzz posts you want to appear in the widget. Then go to your widgets page, where you can drag and drop the widget wherever you want it to appear.</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="googlebuzzer" src="http://ustandout.com/wp-content/uploads/2010/02/googlebuzzer_thumb.jpg" border="0" alt="googlebuzzer" width="168" height="334" /></p>
<h3>Google Buzz as a Social Chicklet: Light Social</h3>
<p>I’m sure all the major social bookmarking plugins will soon include Google Buzz as an available social chicklet (I use <a href="http://wordpress.org/extend/plugins/sexybookmarks/" target="_blank">SexyBookmarks</a> here, and they have not yet). The <a href="http://wordpress.org/extend/plugins/light-social/" target="_blank">Light Social plugin</a> is one of the early adopters to add the Google buzz button. Plugins like this automatically insert a set of social chicklets, or share links, at the bottom of each of your blog posts.</p>
<p><a href="http://ustandout.com/wp-content/uploads/2010/02/lightsocial.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="lightsocial" src="http://ustandout.com/wp-content/uploads/2010/02/lightsocial_thumb.jpg" border="0" alt="lightsocial" width="319" height="37" /></a></p>
<p><strong>Have you integrated Google Buzz into your blog yet? Which Google Buzz plugins are you using?</strong><strong>Related Posts:</strong>
<ul class="similar-posts">
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/official-google-buzz-button"><img src="http://ustandout.com/wp-content/uploads/2010/04/googlebuzz_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/official-google-buzz-button" rel="bookmark" title="April 19, 2010">How to Add the Official Google Buzz Button to your Website</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/facebook/add-facebook-button-blog"><img src="http://ustandout.com/wp-content/uploads/2010/04/facebooklikebutton_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/facebook/add-facebook-button-blog" rel="bookmark" title="April 22, 2010">How to Add the Facebook Like Button to Your Blog</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/official-twitter-button"><img src="http://ustandout.com/wp-content/uploads/2010/08/official_tweet_button_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/official-twitter-button" rel="bookmark" title="August 13, 2010">How to Add Official Twitter Button to Your Site or Blog</a></li>
</div>
</div>
</ul>
<p><!-- Similar Posts took 8.102 ms --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;t=How+to+Add+Google+Buzz+To+Your+Wordpress+Blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40dianafreedman+How+to+Add+Google+Buzz+To+Your+Wordpress+Blog+-+http://su.pr/1ObwWB&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;title=How+to+Add+Google+Buzz+To+Your+Wordpress+Blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;title=How+to+Add+Google+Buzz+To+Your+Wordpress+Blog&amp;summary=Add%20Google%20Buzz%20to%20your%20Wordpress%20blog%20using%20Wordpress%20plugins.%20Your%20social%20media%20strategy%20should%20include%20Google%20Buzz%2C%20a%20new%20internet%20marketing%20tool.&amp;source=U Stand Out: Social Media" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;title=How+to+Add+Google+Buzz+To+Your+Wordpress+Blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;title=How+to+Add+Google+Buzz+To+Your+Wordpress+Blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;title=How+to+Add+Google+Buzz+To+Your+Wordpress+Blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Promote Your Wordpress Blog on LinkedIn</title>
		<link>http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin</link>
		<comments>http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin#comments</comments>
		<pubDate>Sat, 20 Dec 2008 18:21:54 +0000</pubDate>
		<dc:creator>Diana Freedman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[Social Networks]]></category>

		<guid isPermaLink="false">http://ustandout.com/?p=225</guid>
		<description><![CDATA[If you’re a professional blogger, learn how to gain credibility on LinkedIn by promoting your blog with the LinkedIn Wordpress application. ]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin" title="Permanent link to How To Promote Your Wordpress Blog on LinkedIn"><img class="post_image alignleft" src="http://ustandout.com/wp-content/uploads/2008/12/wordpressapp1.png" width="303" height="203" alt="Wordpress LinkedIn" /></a>
</p><div style="float: right; margin-left: 5px; margin-top: 5px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="How To Promote Your Wordpress Blog on LinkedIn" data-via="dianafreedman" data-url="http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin" data-count="vertical" data-via="dianafreedman" data-related=":">Tweet</a></div><p>If you’re not familiar, LinkedIn is like Facebook for professionals. You display your professional experience, connect with current and past coworkers, and even meet new connections. It&#8217;s a great online networking opportunity. If you’re a professional blogger and want to boost your credibility as an expert in your field, you should consider putting your blog on your LinkedIn profile.</p>
<p>In the spirit of research, I put U Stand Out on my Wordpress page, which you can see on <a href="http://www.linkedin.com/in/dianafreedman" target="_blank">my LinkedIn profile page</a>. Here’s how to do it:<span id="more-225"></span></p>
<h3>1. Log into LinkedIn or create an account</h3>
<p>If you’re new to LinkedIn you’ll need to create an account. <a href="http://ustandout.com/index.php/category/networking/linkedin-networking/" target="_blank">Here are tips for how to create a stellar profile, built your network, and more.</a> If you&#8217;re already a LinkedIn member, log in as usual.</p>
<h3>2. Add the application</h3>
<p>Click “Applications” in the left sidebar. Scroll down and click on the Wordpress application. On the next page, check the boxes next to “Display on my profile” and “Display on LinkedIn homepage.”</p>
<p style="text-align: center;"><a href="http://ustandout.com/wp-content/uploads/2008/12/wordpressapp2.png"><img class="size-full wp-image-227 aligncenter" title="wordpressapp2" src="http://ustandout.com/wp-content/uploads/2008/12/wordpressapp2.png" alt="Wordpress application on LinkedIn" width="251" height="317" /></a></p>
<h3>3. Set up your blog feed</h3>
<p>Enter your blog’s URL, not your feed URL (so for example, http://ustandout.com). Select “Show all recent posts from your blog” to show your entire blog. If you only want to show certain posts, tag them “LinkedIn” in your Wordpress editor and select “Show only recent posts tagged LinkedIn.”</p>
<h3>4. Configure your privacy settings</h3>
<p>To make sure that your blog updates appear on your LinkedIn newsfeed:</p>
<ul>
<li>Click “Account &amp; Settings” at the top of the page.</li>
<li>Click “Profile and Status Updates”</li>
<li>Make sure that in the “Publish profile updates and recommendations” section, you select “Yes”</li>
</ul>
<p style="text-align: left;">That’s it! Your wordpress feed will now appear on your profile under your summary section.<br />
<a href="http://ustandout.com/wp-content/uploads/2008/12/wordpressapp3.png"><img class="size-medium wp-image-228 aligncenter" title="wordpressapp3" src="http://ustandout.com/wp-content/uploads/2008/12/wordpressapp3-266x300.png" alt="Wordpress application on LinkedIn" width="266" height="300" /></a><br />
Now if you have, for example, 150 connections, your blog updates will appear in 150 people’s LinkedIn newsfeeds. And if you make an effort to network by participating in groups or answers, other Linkedin members will see snippets of your most recent entries without having to navigate to your blog. This is an easy way to get your blog more exposure.</p>
<p><strong>Have you linked your Wordpress blog to your LinkedIn profile yet?</strong><strong>Related Posts:</strong>
<ul class="similar-posts">
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/career/before-networking-linkedin-makeover-profile"><img src="http://ustandout.com/wp-content/uploads/2010/02/linkedin_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/career/before-networking-linkedin-makeover-profile" rel="bookmark" title="November 14, 2008">Before Networking on LinkedIn, Makeover Your Profile</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/career/building-linkedin-network"><img src="http://ustandout.com/wp-content/uploads/2010/02/linkedin1.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/career/building-linkedin-network" rel="bookmark" title="November 17, 2008">How to Build Your LinkedIn Network in 5 Easy Steps</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/career/network-2nd-degree-linkedin"><img src="http://ustandout.com/wp-content/uploads/2010/02/linkedin_thumb1.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/career/network-2nd-degree-linkedin" rel="bookmark" title="November 21, 2008">How to Network Beyond the 2nd Degree on LinkedIn</a></li>
</div>
</div>
</ul>
<p><!-- Similar Posts took 21.416 ms --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;t=How+To+Promote+Your+Wordpress+Blog+on+LinkedIn" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40dianafreedman+How+To+Promote+Your+Wordpress+Blog+on+LinkedIn+-+http://su.pr/8Bxknk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;title=How+To+Promote+Your+Wordpress+Blog+on+LinkedIn" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;title=How+To+Promote+Your+Wordpress+Blog+on+LinkedIn&amp;summary=If%20you%E2%80%99re%20a%20professional%20blogger%2C%20learn%20how%20to%20gain%20credibility%20on%20LinkedIn%20by%20promoting%20your%20blog%20with%20the%20LinkedIn%20Wordpress%20application.%20&amp;source=U Stand Out: Social Media" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;title=How+To+Promote+Your+Wordpress+Blog+on+LinkedIn" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;title=How+To+Promote+Your+Wordpress+Blog+on+LinkedIn" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;title=How+To+Promote+Your+Wordpress+Blog+on+LinkedIn" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://UStandOut.com/linkedin-networking/promote-wordpress-blog-linkedin/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugins that Encourage Blog Comments</title>
		<link>http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments</link>
		<comments>http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments#comments</comments>
		<pubDate>Tue, 16 Dec 2008 16:08:04 +0000</pubDate>
		<dc:creator>Diana Freedman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://ustandout.com/?p=192</guid>
		<description><![CDATA[These four simple Wordpress plugins will encourage commenting on your blog: CommentLuv, DoFollow, Top Commentators, and Subscribe to Comments. Here's why...]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments" title="Permanent link to Wordpress Plugins that Encourage Blog Comments"><img class="post_image alignleft" src="http://ustandout.com/wp-content/uploads/2010/02/wordpress_thumb.jpg" width="150" height="153" alt="Wordpress Logo" /></a>
</p><div style="float: right; margin-left: 5px; margin-top: 5px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="Wordpress Plugins that Encourage Blog Comments" data-via="dianafreedman" data-url="http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments" data-count="vertical" data-via="dianafreedman" data-related=":">Tweet</a></div><p style="text-align: left;">Why is it so important to encourage commenting? <a href="http://www.problogger.net/archives/2006/10/12/10-techniques-to-get-more-comments-on-your-blog/" target="_blank">This problogger article</a> discussed a study revealing that 90% of people online are lurkers (read or observe content without contributing), 9% of people contributing a “little,” and only 1% of people actively participate online. This is referred to as the 1% rule, and it’s your job to figure out how to break that rule on your blog.</p>
<p style="text-align: left;">There are so many <a href="http://mashable.com/2007/07/24/wordpress-comments/" target="_blank">Wordpress plugins for comments</a>, and sifting through them to find the best ones can be overwhelming. So here are four simple Wordpress plugins I recommend to encourage readers to comment on your blog.</p>
<p><span id="more-192"></span></p>
<h3 style="text-align: left;"><a href="http://www.commentluv.com" target="_blank">1. CommentLuv</a></h3>
<p style="text-align: left;">CommentLuv creates an incentive for people to comment. When a user enters his URL while commenting, the plugin automatically visits his blog’s feed and displays a titled link to his last post under his comment. This rewards him by giving other readers a better idea of what his blog is about, and an additional link to his blog. When passive readers with blogs see that you have this plugin installed, they will be more motivated to comment.</p>
<p style="text-align: center;"><a href="http://ustandout.com/wp-content/uploads/2008/12/wordpresscommentluv.png"><img class="size-full wp-image-194     aligncenter" title="wordpresscommentluv" src="http://ustandout.com/wp-content/uploads/2008/12/wordpresscommentluv.png" alt="wordpress - commentluv plugin" width="500" height="131" /></a></p>
<p style="text-align: left;">CommentLuv is easy to install: just <a href="http://www.commentluv.com/download">download from their site</a>, upload it to your plugins folder, and activate it.</p>
<h3><a href="http://www.semiologic.com/software/wp-tweaks/dofollow/" target="_blank">2. DoFollow</a></h3>
<p>Installing the DoFollow plugin can help improve your commentator’s page rank, especially when used in conjunction with CommentLuv. This will motivate your readers to comment more often. If you think the DoFollow plugin will increase spam on your blog, simply activate the Aksimet plugin, the spam filter Wordpress includes. You can also moderate your comments. For example, I don’t accept comments like “Hiiiiii” or “Great blog!” that have clearly just commented to leave their link. But DoFollow rewards commentators that write insightful or meaningful comments, so I recommend installing this plugin.</p>
<p>There is much debate amongst bloggers regarding the no-follow and do-follow rules. The nofollow attribute prevents search engines from crawling links on your site. There is no dofollow attribute except for NOT having the nofollow attribute, and this allows search engines to crawl those links. But contrary to popular belief, having DoFollow should not hurt your blog’s SEO. <a href="http://thoushallblog.com/to-follow-or-not-to-follow-that-is-the-question/" target="_blank">Gerald Weber has a great post about dofollow vs nofollow at Thou Shall Blog</a>, you can read about the details there.</p>
<h3><a href="http://wordpress.org/extend/plugins/top-commentators-widget/" target="_blank">3. Top Commentators</a></h3>
<p style="text-align: left;">Top Commentators lists your readers who have commented the most in a widget. You can see mine over on the left. This provides an incentive for people to post often, so that they can get their names and links to their blog on this list. This is a valuable backlink for bloggers in your niche, especially if you don’t have nofollow rules in place. So by installing this widget, you’ll encourage people in your niche to comment and be active on your site to stay on that list. This is also a great way to make connections with these bloggers, because if you comment on their blogs and they install this plugin, they’ll return the favor.</p>
<p style="text-align: center;"><a href="http://ustandout.com/wp-content/uploads/2008/12/wordpresstopcomment.png"><img class="size-full wp-image-195   aligncenter" title="wordpresstopcomment" src="http://ustandout.com/wp-content/uploads/2008/12/wordpresstopcomment.png" alt="wordpress - top commentators plugin" width="165" height="138" /></a></p>
<h3><a href="http://wordpress.org/extend/plugins/subscribe-to-comments/">4. Subscribe to Comments</a></h3>
<p>The Subscribe to Comments plugin gives your readers a way to stay involved in the discussion by receiving updates when there are new comments. If they don’t want to subscribe to your blog, they can still subscribe to individual posts to keep up to speed on the conversation.</p>
<p><strong>So what do you think? Do you use any of these plugins? How have they worked for you? What other comments plugins would you recommend?</strong><strong>Related Posts:</strong>
<ul class="similar-posts">
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog"><img src="http://ustandout.com/wp-content/uploads/2010/02/wordpressgooglebuzz_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/how-to-add-google-buzz-wordpress-blog" rel="bookmark" title="February 17, 2010">How to Add Google Buzz To Your Wordpress Blog</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/social-media/guest-post-create-content-worthy-social-media-marketing"><img src="http://ustandout.com/wp-content/uploads/2008/12/socialbookmarks.png" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/social-media/guest-post-create-content-worthy-social-media-marketing" rel="bookmark" title="December 19, 2008">How To Create Content Worthy of Social Media Marketing</a></li>
</div>
</div>
<div>
<div class="similar-posts">
<li><a href="http://UStandOut.com/facebook/add-facebook-button-blog"><img src="http://ustandout.com/wp-content/uploads/2010/04/facebooklikebutton_thumb.jpg" width="50" height="50" alt="" /></a><a href="http://UStandOut.com/facebook/add-facebook-button-blog" rel="bookmark" title="April 22, 2010">How to Add the Facebook Like Button to Your Blog</a></li>
</div>
</div>
</ul>
<p><!-- Similar Posts took 9.923 ms --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;t=Wordpress+Plugins+that+Encourage+Blog+Comments" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40dianafreedman+Wordpress+Plugins+that+Encourage+Blog+Comments+-+http://su.pr/1ausrR&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;title=Wordpress+Plugins+that+Encourage+Blog+Comments" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;title=Wordpress+Plugins+that+Encourage+Blog+Comments&amp;summary=These%20four%20simple%20Wordpress%20plugins%20will%20encourage%20commenting%20on%20your%20blog%3A%20CommentLuv%2C%20DoFollow%2C%20Top%20Commentators%2C%20and%20Subscribe%20to%20Comments.%20Here%27s%20why...&amp;source=U Stand Out: Social Media" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;title=Wordpress+Plugins+that+Encourage+Blog+Comments" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;title=Wordpress+Plugins+that+Encourage+Blog+Comments" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;title=Wordpress+Plugins+that+Encourage+Blog+Comments" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://UStandOut.com/blogging/wordpress-plugins-encourage-blog-comments/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>
