<?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>Sam&#039;s Web Guide &#187; About Author</title>
	<atom:link href="http://samswebguide.com/tag/about-author/feed/" rel="self" type="application/rss+xml" />
	<link>http://samswebguide.com</link>
	<description>The Evolving Web in Simple Terms</description>
	<lastBuildDate>Tue, 06 Dec 2011 00:00:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Add an About Author Box in Thesis 1.6</title>
		<link>http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/</link>
		<comments>http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 13:39:54 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Thesis Tutorials]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[About Author]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://samswebguide.com/?p=393</guid>
		<description><![CDATA[After posting a general tutorial on How to Add an About Author Box in the Post Footer in WordPress yesterday, my visitor traffic soared and quite a few persons were asking me how to add the author box to the Thesis theme. So since I like to please my readers, here&#8217;s a short and easy ...]]></description>
			<content:encoded><![CDATA[<p>After posting a general tutorial on <a title="How to Add an About Author Box in the Post Footer  in WordPress" rel="bookmark" href="../2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/" target="_blank">How to Add </a><a title="How to Add an About Author Box in the Post Footer  in  WordPress" rel="bookmark" href="../2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/" target="_blank"><img class="alignright size-full  wp-image-401" title="Thesis Image" src="http://samswebguide.com/wp-content/uploads/2010/03/thesis300x2501.png" alt="Thesis Image" width="146" height="120" /></a><a title="How to Add an About Author Box in the Post Footer  in WordPress" rel="bookmark" href="../2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/" target="_blank"><br />
an About Author Box in the Post Footer in  WordPress </a>yesterday, my visitor traffic soared and quite a few persons were asking me how to add the author box to the Thesis theme. So since I like to please my readers, here&#8217;s a short and easy tutorial on how to get it done.</p>
<p><span id="more-393"></span></p>
<h3>Step 1 &#8211; Add your bio to wordpress</h3>
<p>Fill out your profile information in the wordpress Users&#8217; Profile section. Ensure to add your first name and your site&#8217;s name because the script will be calling and displaying this information on your posts.</p>
<h3>Step 2 &#8211; Code in the Custom_functions.php file</h3>
<p>Access your <strong>Thesis Options</strong> (Located at the bottom-left in your wordpress admin) and select <strong>Custom File Editor</strong>, this is where you will add the code to call the bio information. Within the thesis custom file editor, ensure that custom_functions.php is selected in the file selection drop-down menu at the top. If it is not selected then select it from the drop-down menu and click <strong>Edit Selected File.</strong></p>
<p>Then add the code below at the end of the file and click save:<br />
<code><br />
function post_footer() {<br />
if (is_single())<br />
{<br />
?&gt;<br />
&lt;div class="postauthor"</code><code>&gt;<br />
&lt;?php echo get_avatar( get_the_author_id() , 120 ); ?&gt;<br />
&lt;h4&gt;Article by &lt;a href="&lt;?php the_author_url(); ?&gt;"&gt;<br />
&lt;?php the_author_firstname(); ?&gt; &lt;?php the_author_lastname(); ?&gt;&lt;/a&gt;&lt;/h4&gt;<br />
&lt;p&gt;&lt;?php the_author_firstname(); ?&gt; has written &lt;strong&gt;&lt;?php the_author_posts(); ?&gt;&lt;/strong&gt; awesome articles for us. &lt;br/&gt;&lt;br/&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;?php<br />
}<br />
}<br />
add_action('thesis_hook_after_post_box', 'post_footer');</code></p>
<p><span style="color: #993300;"><strong><span style="color: #000000;">Note: For the code in the bold highlight above, the RSS feed addresses should be changed to your own.</span></strong><br />
</span></p>
<h3><span style="color: #993300;"><span style="color: #000000;">Step 3 &#8211; Code in the Custom.css file</span></span></h3>
<p><span style="color: #993300;"><span style="color: #000000;">Within your custom file editor select <strong>Custom.css</strong> from the drop-down menu and click edit selected file. Then add the css code below at the end of the file and hit save:</span></span><br />
<code><br />
.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }<br />
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }<br />
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }<br />
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }<br />
</code></p>
<p>You should end up with something like this:<span style="color: #993300;"> </span><img class="aligncenter  size-full wp-image-399" title="Thesis Author Box" src="http://samswebguide.com/wp-content/uploads/2010/03/thesis-author-box.png" alt="Thesis Author Box" width="457" height="148" /><span style="color: #993300;"><span style="color: #000000;">And that&#8217;s it. Hope you found this useful.</span></span></p>
<p><span style="color: #993300;"><span style="color: #000000;"> </span></span></p>
<p><span style="color: #993300;"><span style="color: #000000;"><span style="color: #000000;">Please let me know if this works for you or if you have any difficulties. Everybody is going crazy over the Thesis theme, can anyone convince me as to why I should switch?</span><br />
</span></span></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" 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-digg">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Box+in+Thesis+1.6&amp;link=http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/&amp;notes=After%20posting%20a%20general%20tutorial%20on%20How%20to%20Add%20%0D%0Aan%20About%20Author%20Box%20in%20the%20Post%20Footer%20in%20%20Wordpress%20yesterday%2C%20my%20visitor%20traffic%20soared%20and%20quite%20a%20few%20persons%20were%20asking%20me%20how%20to%20add%20the%20author%20box%20to%20the%20Thesis%20theme.%20So%20since%20I%20like%20to%20please%20my%20readers%2C%20here%27s%20a%20short%20and%20easy%20tutorial%20on%20h&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=286&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://samswebguide.com/2010/03/20/how-to-add-an-about-author-box-in-thesis-1-6/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>How to Add an About Author Bio Box in the Post Footer in WordPress</title>
		<link>http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/</link>
		<comments>http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 13:04:03 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Other Tutorials]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[About Author]]></category>
		<category><![CDATA[Author Bio Box]]></category>
		<category><![CDATA[Author Signature WordPress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Post Footer]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://samswebguide.com/?p=370</guid>
		<description><![CDATA[This is a very short tutorial on how to add an About Author Bio Box at the end of your posts just like the one at the end of this post. An author box is very important because it further connects with readers by giving a little background information on the author. I spent 2 ...]]></description>
			<content:encoded><![CDATA[<p>This is a very short tutorial on how to add an <strong>About </strong><img class="alignright size-full  wp-image-59" title="wordpress-blue" src="http://samswebguide.com/wp-content/uploads/2010/02/wordpress-blue.png" alt="Wordpress Logo" width="150" height="150" /><br />
<strong>Author Bio Box</strong> at the end of your posts just like the one at the end of this post. An author box is very important because it further connects with readers by giving a little background information on the author. I spent 2 days testing different types of plugins for this purpose but could not find any that worked correctly. So I decided to write the code and then this tutorial.<span id="more-370"></span></p>
<p>This will require that you access 2 of your template files, however, very little coding is required; just copying and pasting, unless you want to make further customization.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-875" title="WordPress Author Bio Box" src="http://samswebguide.com/wp-content/uploads/2010/03/author-bio.jpg" alt="WordPress Author Bio Box" width="468" height="134" /></p>
<p>Let&#8217;s get started.</p>
<h3><span style="color: #000000;">Step 1 &#8211; Code to call the Author Biography Info</span></h3>
<p>Copy the code below to your <strong>single.php</strong> (Single Post) file, which is found in WordPress by accessing your Appearance tab then select Editor. Search for the &lt;?php the_content(); ?&gt; line of code, press enter to give some space then copy and paste the code <strong>below that line</strong>, then save:</p>
<pre>&lt;div class="postauthor"&gt;
&lt;?php echo get_avatar( get_the_author_id() , 120 ); ?&gt;
&lt;h4&gt;Article by &lt;a href="&lt;?php the_author_url(); ?&gt;"&gt;
&lt;?php the_author_firstname(); ?&gt; &lt;?php the_author_lastname(); ?&gt;&lt;/a&gt;&lt;/h4&gt;
 &lt;p&gt;&lt;?php the_author_firstname(); ?&gt; has written &lt;strong&gt;&lt;?php the_author_posts(); ?&gt;&lt;/strong&gt; awesome article(s) for us. &lt;br/&gt;&lt;br/&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;
&lt;/div&gt;</pre>
<h3><span style="color: #000000;">Step 2 &#8211; CSS Files</span></h3>
<p>Copy the CSS code below to your <strong>style.css</strong> or<strong> </strong><strong>custom.css</strong> file. This will control the background color, width and text  alignment. You may change the color schemes as needed to fit your theme.</p>
<pre>/* Author's Bio Box */
.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }</pre>
<h3><span style="color: #993300;"><span style="color: #000000;"> </span></span><span style="color: #993300;"><span style="color: #000000;">Step 3 &#8211; Author&#8217;s Bio</span></span></h3>
<p><span style="color: #993300;"><span style="color: #000000;">Add the author&#8217;s bio information in the About Yourself section in the WordPress dashboard. Please note that if you wish to add links to the author&#8217;s bio, they should be entered using the </span></span>&lt;a href=&#8221;http://www.yourdomain.com&#8221;&gt; Your Site&#8217;s Name &lt;/a&gt; format.</p>
<p><span style="color: #993300;"><span style="color: #000000;">That&#8217;s it! I hope this tutorial was simple enough and very helpful.<br />
</span></span></p>
<h3><span style="color: #993300;"><span style="color: #000000;"><span style="color: #000000;">Questions / Suggestions </span></span></span></h3>
<p><span style="color: #993300;"><span style="color: #000000;"><span style="color: #000000;">Please leave a comment and let me know if this works for you, if its simple enough or if you have an idea for improving the code. There is always room for improvement.</span><br />
</span></span></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" 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-digg">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Add+an+About+Author+Bio+Box+in+the+Post+Footer+in+Wordpress&amp;link=http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/&amp;notes=This%20is%20a%20very%20short%20tutorial%20on%20how%20to%20add%20an%20About%20%0D%0AAuthor%20Bio%20Box%20at%20the%20end%20of%20your%20posts%20just%20like%20the%20one%20at%20the%20end%20of%20this%20post.%20An%20author%20box%20is%20very%20important%20because%20it%20further%20connects%20with%20readers%20by%20giving%20a%20little%20background%20information%20on%20the%20author.%20I%20spent%202%20days%20testing%20different&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=286&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://samswebguide.com/2010/03/19/how-to-add-an-about-author-box-in-the-post-footer-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

