<?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>CrunchPress &#187; Insert Author BIO</title>
	<atom:link href="http://crunchpress.com/tag/insert-author-bio/feed/" rel="self" type="application/rss+xml" />
	<link>http://crunchpress.com</link>
	<description>CrunchPress Themes</description>
	<lastBuildDate>Thu, 24 May 2012 10:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress Hack &#8211; How To Insert Author Bio In Every Post</title>
		<link>http://crunchpress.com/wordpress-hack-how-to-insert-author-bio-in-every-post/</link>
		<comments>http://crunchpress.com/wordpress-hack-how-to-insert-author-bio-in-every-post/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 07:58:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Insert Author BIO]]></category>
		<category><![CDATA[WordPress Author Bio]]></category>
		<category><![CDATA[WordPress Hack]]></category>

		<guid isPermaLink="false">http://crunchpress.com/?p=206</guid>
		<description><![CDATA[Do you want to &#8220;Insert Author BIO in WordPress Post&#8220;? It is not so complex it is rather simple. Most often blogger want to share their BIO with their blog readers. I think It is best way to interact with new blog visitors / readers. This function is added in some WordPress themes by default, if this function is not available in your WordPress theme, then you can add it yourself. In order to add, open your theme folder and find file &#8220;Function.php&#8221;  open it in your favorite text editor copy code given below and past it in Function.php then save it. [php]function get_author_bio ($content=&#8221;){ global $post; $post_author_name=get_the_author_meta(&#34;display_name&#34;); $post_author_description=get_the_author_meta(&#34;description&#34;); $html=&#34;&#38;lt;div class=&#8217;clearfix&#8217; id=&#8217;about_author&#8217;&#38;gt;n&#34;; $html.=&#34;&#38;lt;img width=&#8217;80&#8242; height=&#8217;80&#8242; class=&#8217;avatar&#8217; src=&#8217;http://www.gravatar.com/avatar.php?gravatar_id=&#34;.md5 (get_the_author_email()). &#34;&#38;amp;default=&#34;.urlencode($GLOBALS['defaultgravatar']). &#34;&#38;amp;size=80&#38;amp;r=PG&#8217; alt=&#8217;PG&#8217;/&#38;gt;n&#34;; $html.=&#34;&#38;lt;div class=&#8217;author_text&#8217;&#38;gt;n&#34;; $html.=&#34;&#38;lt;h4&#38;gt;Author: &#38;lt;span&#38;gt;&#34;.$post_author_name.&#34;&#38;lt;/span&#38;gt;&#38;lt;/h4&#38;gt;n&#34;; $html.= $post_author_description.&#34;n&#34;; $html.=&#34;&#38;lt;/div&#38;gt;n&#34;; $html.=&#34;&#38;lt;div class=&#8217;clear&#8217;&#38;gt;&#38;lt;/div&#38;gt;n&#34;; $content .= $html; return $content; } add_filter(&#8216;the_content&#8217;, &#8216;get_author_bio&#8217;);[/php] After saving all setting reload you web page to check effects of this technique.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-207" title="WordPress Hack - How To Insert Author Bio In Every Post" src="http://crunchpress.com/wp-content/uploads/2009/12/wordpress-logo.png" alt="wordpress-logo" width="276" height="259" /></p>
<p>Do you want to &#8220;<strong>Insert Author BIO in WordPress Post</strong>&#8220;? It is not so complex it is rather simple. Most often blogger want to share their BIO with their blog readers. I think It is best way to interact with new blog visitors / readers. This function is added in some WordPress themes by default, if this function is not available in your WordPress theme, then you can add it yourself. In order to add, open your theme folder and find file &#8220;Function.php&#8221;  open it in your favorite text editor copy code given below and past it in Function.php then save it.<br />
[php]function get_author_bio ($content=&#8221;){<br />
    global $post;</p>
<p>    $post_author_name=get_the_author_meta(&quot;display_name&quot;);<br />
    $post_author_description=get_the_author_meta(&quot;description&quot;);<br />
    $html=&quot;&amp;lt;div class=&#8217;clearfix&#8217; id=&#8217;about_author&#8217;&amp;gt;n&quot;;<br />
    $html.=&quot;&amp;lt;img width=&#8217;80&#8242; height=&#8217;80&#8242; class=&#8217;avatar&#8217;<br />
    src=&#8217;http://www.gravatar.com/avatar.php?gravatar_id=&quot;.md5<br />
    (get_the_author_email()).<br />
    &quot;&amp;amp;default=&quot;.urlencode($GLOBALS['defaultgravatar']).<br />
    &quot;&amp;amp;size=80&amp;amp;r=PG&#8217; alt=&#8217;PG&#8217;/&amp;gt;n&quot;;<br />
    $html.=&quot;&amp;lt;div class=&#8217;author_text&#8217;&amp;gt;n&quot;;<br />
    $html.=&quot;&amp;lt;h4&amp;gt;Author: &amp;lt;span&amp;gt;&quot;.$post_author_name.&quot;&amp;lt;/span&amp;gt;&amp;lt;/h4&amp;gt;n&quot;;<br />
    $html.= $post_author_description.&quot;n&quot;;<br />
    $html.=&quot;&amp;lt;/div&amp;gt;n&quot;;<br />
    $html.=&quot;&amp;lt;div class=&#8217;clear&#8217;&amp;gt;&amp;lt;/div&amp;gt;n&quot;;<br />
    $content .= $html;</p>
<p>    return $content;<br />
}</p>
<p>add_filter(&#8216;the_content&#8217;, &#8216;get_author_bio&#8217;);[/php]<br />
After saving all setting reload you web page to check effects of this<br />
technique.</p>
]]></content:encoded>
			<wfw:commentRss>http://crunchpress.com/wordpress-hack-how-to-insert-author-bio-in-every-post/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

