<?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>WpFunc &#187; author</title>
	<atom:link href="http://wpfunc.com/tag/author/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Thu, 01 Dec 2011 01:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Small Security Hole in WordPress!</title>
		<link>http://wpfunc.com/wordpress/small-security-hole-in-wordpress.html</link>
		<comments>http://wpfunc.com/wordpress/small-security-hole-in-wordpress.html#comments</comments>
		<pubDate>Thu, 20 May 2010 07:29:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[login name]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[security hole]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=436</guid>
		<description><![CDATA[When you add a comment to your article WordPress system adds a class which named &#8220;comment-author-&#8217;username&#8217; &#8220;. But when you add a comment as administrator the system make this class &#8220;comment-author-yourloginname&#8221; . Bavotasan thinks it will be a security hole for WordPress. If you add this function into your theme&#8217;s functions.php this problem will be [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When you add a comment to your article WordPress system adds a class which named &#8220;comment-author-&#8217;username&#8217; &#8220;. But when you add a comment as administrator the system make this class &#8220;comment-author-yourloginname&#8221; . Bavotasan thinks it will be a security hole for WordPress. If you add this function into your theme&#8217;s functions.php this problem will be solve. <span id="more-436"></span></p>
<h3>Here is the function;</h3>
<pre class="brush: php; title: ; notranslate">function remove_comment_author_class( $classes ) {
	foreach( $classes as $key =&gt; $class ) {
		if(strstr($class, &quot;comment-author-&quot;)) {
			unset( $classes[$key] );
		}
	}
	return $classes;
}
add_filter( 'comment_class' , 'remove_comment_author_class' );</pre>
<p><a href="http://bavotasan.com/tutorials/small-security-hole-in-wordpress-comments/" target="_blank">Here is the original post!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/small-security-hole-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Say Hello to returning visitors!</title>
		<link>http://wpfunc.com/wordpress/say-hello-to-returning-visitors.html</link>
		<comments>http://wpfunc.com/wordpress/say-hello-to-returning-visitors.html#comments</comments>
		<pubDate>Sun, 27 Dec 2009 10:19:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[comment_cookie]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[returning]]></category>
		<category><![CDATA[visitor]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=334</guid>
		<description><![CDATA[We can use cookies for show some custom messages to our visitor. But this cookies are comment_cookie. Also show custom message to normal visitors. If you want to show this custom messages read this article. Let&#8217;s Begin&#8230;
Here is the code;
That&#8217;s All. Have a nice day!
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We can use cookies for show some custom messages to our visitor. But this cookies are comment_cookie. Also show custom message to normal visitors. If you want to show this custom messages read this article. Let&#8217;s Begin&#8230;<span id="more-334"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php; title: ; notranslate">&lt;?php if(isset($_COOKIE['comment_author_'.COOKIEHASH])) {
	$lastCommenter = $_COOKIE['comment_author_'.COOKIEHASH];

	echo &quot;Welcome Back &quot;. $lastCommenter .&quot;!&quot;;

	} else {

	echo &quot;Welcome, Guest!&quot;;
} ?&gt;</pre>
<p>That&#8217;s All. Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/say-hello-to-returning-visitors.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automatically Insert Author&#8217;s Bio on each post</title>
		<link>http://wpfunc.com/wordpress/automatically-insert-authors-bio-on-each-post.html</link>
		<comments>http://wpfunc.com/wordpress/automatically-insert-authors-bio-on-each-post.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:24:42 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[bio]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[functions.php]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=272</guid>
		<description><![CDATA[This recipe from WpRecipes. JBJ found cool tricks and hacks for WordPress. I am working for a long time. Because od that i can&#8217;t wtire article(s) last week. But i will add this recipe with a pingback :) Lets Begin.
If you want to add author&#8217;s bio on each post you can use your theme&#8217;s functions.php. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This recipe from WpRecipes. JBJ found cool tricks and hacks for WordPress. I am working for a long time. Because od that i can&#8217;t wtire article(s) last week. But i will add this recipe with a pingback :) Lets Begin.<span id="more-272"></span></p>
<p style="text-align: justify;">If you want to add author&#8217;s bio on each post you can use your theme&#8217;s functions.php. Simply copy/paste this code and change values for your choices. That&#8217;s All.</p>
<pre class="brush: php; auto-links: false; title: ; notranslate">function get_author_bio ($content=''){
    global $post;

    $post_author_name=get_the_author_meta(&quot;display_name&quot;);
    $post_author_description=get_the_author_meta(&quot;description&quot;);
    $html=&quot;&lt;div class='clearfix' id='about_author'&gt;\n&quot;;
    $html.=&quot;&lt;img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=&quot;.md5(get_the_author_email()). &quot;&amp;default=&quot;.urlencode($GLOBALS['defaultgravatar']).&quot;&amp;size=80&amp;r=PG' alt='PG'/&gt;\n&quot;;
    $html.=&quot;&lt;div class='author_text'&gt;\n&quot;;
    $html.=&quot;&lt;h4&gt;Author: &lt;span&gt;&quot;.$post_author_name.&quot;&lt;/span&gt;&lt;/h4&gt;\n&quot;;
    $html.= $post_author_description.&quot;\n&quot;;
    $html.=&quot;&lt;/div&gt;\n&quot;;
    $html.=&quot;&lt;div class='clear'&gt;&lt;/div&gt;\n&quot;;
    $content .= $html;
    }

    return $content;
}

add_filter('the_content', 'get_author_bio');
</pre>
<p>Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/automatically-insert-authors-bio-on-each-post.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Asked &#8216;Add a hyperlink to the Authors Name&#8217;</title>
		<link>http://wpfunc.com/wordpress/john-asked-add-a-hyperlink-to-the-authors-name.html</link>
		<comments>http://wpfunc.com/wordpress/john-asked-add-a-hyperlink-to-the-authors-name.html#comments</comments>
		<pubDate>Fri, 16 Oct 2009 18:59:44 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[author name]]></category>
		<category><![CDATA[hyperlink]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[nickname]]></category>
		<category><![CDATA[user_login]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=265</guid>
		<description><![CDATA[Hi everybody. When i check my e-mails i see John&#8217;s one. He asked me about how he can add a hyperlink with authors nickname. I live in Turkey and i get this e-mail tonight because im working and tehere is Time difference :) Ok John i found answer. Lets begin.
Firstly we use an user system [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hi everybody. When i check my e-mails i see John&#8217;s one. He asked me about how he can add a hyperlink with authors nickname. I live in Turkey and i get this e-mail tonight because im working and tehere is Time difference :) Ok John i found answer. Lets begin.<span id="more-265"></span></p>
<p style="text-align: justify;">Firstly we use an user system with WordPress and this system give a chance for using our nicknames, login names or our First and Last names. When we add a nickname we can use this for our Display name. But linking system is different. The system uses our login names for linking and we can&#8217;t change this login name from User Options. Because of this we have to change our login name from mysql (There are some plugins but i can&#8217;t trust anymore). I tell answer to you step by step. <em><strong>If you want to only  show your author&#8217;s dipslay name with link Don&#8217;t use Mysql entires.</strong></em></p>
<h3 style="text-align: justify;">First Step: Choose a nickname;</h3>
<p style="text-align: justify;">Login to your Dashboard and edit your Personal Information. There a filed with name &#8216;Nickname&#8217;. Add your Nickname here and save. After save you can select your Display name with a DropDown. Choose your Nickname as Display Name and save.</p>
<h3 style="text-align: justify;">Second Step: Change the Login Name From Mysql Admin;</h3>
<p style="text-align: justify;">Login to your Cpanel (maybe Plesk Panel) and Open PhpMyadmin. Find your Mysql and open it. After that choose wp_users and click on it. When the table opened you can edit your and authors info. Press the edit link and change <strong><em>user_login</em></strong> with whatever you want. That&#8217;s All. Save the info.After saving the link will change with new <em><strong>User Login name.</strong></em></p>
<h3 style="text-align: justify;">Third Step: Adding the code;</h3>
<p style="text-align: justify;">If you want to add a code to your posts, pages you can add this one-line code to your theme.  If you apply first step you will see title with author Nickname. When you add this code, the link will be like this;</p>
<pre class="brush: plain; title: ; notranslate">&lt;a href=&quot;author link&quot;&gt;Author Nickname&lt;/a&gt;</pre>
<h3 style="text-align: justify;">The code;</h3>
<pre class="brush: php; title: ; notranslate">&lt;?php the_author_posts_link(); ?&gt;</pre>
<p style="text-align: justify;">That&#8217;s All.</p>
<p style="text-align: justify;"><em><strong><span style="color: #ff0000;">Note: </span>If you don&#8217;t apply Second Step The Permalink will be user_login name. But you change user_login name like nickname, Permalink will be your new user_login.</strong></em></p>
<p style="text-align: justify;">Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/john-asked-add-a-hyperlink-to-the-authors-name.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make an Archives Page Template</title>
		<link>http://wpfunc.com/wordpress/make-an-archives-page-template.html</link>
		<comments>http://wpfunc.com/wordpress/make-an-archives-page-template.html#comments</comments>
		<pubDate>Fri, 02 Oct 2009 17:48:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archive template]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[archives.php]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/wordpress/make-an-archives-page-template.html</guid>
		<description><![CDATA[As default themes have an archives.php. But if you want to make changes on your arcihves.php or if you&#8217;re an theme developer you can use this template quickly. You can get more information on Codex Page. Lets Begin&#8230;
Here is the code;
First Create an information and name area;
After that add these lines for page template; with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">As default themes have an archives.php. But if you want to make changes on your arcihves.php or if you&#8217;re an theme developer you can use this template quickly. You can get more information on <a href="http://codex.wordpress.org/Pages#Page_Templates" target="_blank">Codex Page</a>. Lets Begin&#8230;<span id="more-239"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;">First Create an information and name area;</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php
/*
Template Name: Archive page
*/
?&gt;</pre>
<p style="text-align: justify;">After that add these lines for page template; with this code you list all your articles.</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php
$posts_to_show = 100; //Max number of articles to display
$debut = 0; //The first article to be displayed
?&gt;
&lt;?php while(have_posts()) : the_post(); ?&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;?php
$myposts = get_posts('numberposts=$posts_to_show&amp;offset=$debut');
foreach($myposts as $post) :
?&gt;
&lt;li&gt;&lt;?php the_time('d/m/y') ?&gt;: &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endforeach; ?&gt;
&lt;/ul&gt;
&lt;?php endwhile; ?&gt;</pre>
<p style="text-align: justify;">And add these lines for category and the others&#8230;</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php while(have_posts()) : the_post(); ?&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;h2&gt;Categories&lt;/h2&gt;
&lt;ul&gt;&lt;?php wp_list_cats('sort_column=name&amp;optioncount=1') ?&gt;&lt;/ul&gt;
&lt;h2&gt;Monthly Archives&lt;/h2&gt;
&lt;ul&gt;&lt;?php wp_get_archives('type=monthly&amp;show_post_count=1') ?&gt;&lt;/ul&gt;
&lt;?php endwhile; ?&gt;</pre>
<p style="text-align: justify;">Now, save the <strong>articles.php</strong> and upload to your template&#8217;s area. Go to Pages &gt; New Page and select the Page Template with Archives.php.</p>
<p style="text-align: justify;">That&#8217;s All&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/make-an-archives-page-template.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highlight the Author Comments!</title>
		<link>http://wpfunc.com/wordpress/highlight-the-author-comments.html</link>
		<comments>http://wpfunc.com/wordpress/highlight-the-author-comments.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 18:34:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[comments.php]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[highliht]]></category>
		<category><![CDATA[style.css]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/wordpress/highlight-the-author-comments.html</guid>
		<description><![CDATA[You can seperate the author comment from the reader comments. That&#8217;s needed some change in your css file and comments.php file. After that author comments shown in a different background color. Let&#8217;s begin&#8230;
Here is the code;
First one in comments.php file. Find this code;
And change with this one;
After that open your style.css file and add this [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can seperate the author comment from the reader comments. That&#8217;s needed some change in your css file and comments.php file. After that author comments shown in a different background color. Let&#8217;s begin&#8230;<span id="more-234"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;">First one in <span style="color: #ff0000;"><strong>comments.php</strong></span> file. Find this code;</p>
<pre class="brush: plain; title: ; notranslate">&lt;li &lt;?php echo $oddcomment; ?&gt;id=&quot;comment-&lt;?php comment_ID() ?&gt;&quot;&gt;</pre>
<p style="text-align: justify;"><strong><em>And change with this one;</em></strong></p>
<pre class="brush: plain; title: ; notranslate">&lt;li class=&quot;&lt;?php if ($comment-&gt;user_id == 1) $oddcomment = &quot;authorstyle&quot;; echo $oddcomment; ?&gt;&quot;</pre>
<p style="text-align: justify;">After that open your<strong> <span style="color: #ff0000;">style.css</span></strong> file and add this lines in to it;</p>
<pre class="brush: css; title: ; notranslate">.authorstyle {
background-color: #B3FFCC !important;
} </pre>
<p style="text-align: justify;">That&#8217;s All. Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/highlight-the-author-comments.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display who modify your post(s)!</title>
		<link>http://wpfunc.com/wordpress/display-who-modify-your-posts.html</link>
		<comments>http://wpfunc.com/wordpress/display-who-modify-your-posts.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 19:57:04 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[funciton]]></category>
		<category><![CDATA[moderate]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[writer]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=161</guid>
		<description><![CDATA[You can display who modarate/modify your post. This mean show the latest author who modified your post. We can use 2.8&#8242;s new template tag &#8216;the_modified_author()&#8216;. If you use Wp 2.8 you can use a simple code but, if you use Wp 2.7 you have to use this function below. Lets Begin :)
Here is the code;

Firstly [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify; ">You can display who modarate/modify your post. This mean show the latest author who modified your post. We can use 2.8&#8242;s new template tag <strong><span style="color: #ff0000;">&#8216;the_modified_author()</span></strong>&#8216;. If you use Wp 2.8 you can use a simple code but, if you use Wp 2.7 you have to use this function below. Lets Begin :)<span id="more-161"></span></p>
<h1>Here is the code;</h1>
<p style="text-align: justify; "><span class="alert">With this function we will change our templates <strong>funcitons.php</strong>. If you don&#8217;t know about WordPress or PHp coding, please don&#8217;t touch this file. If you any questions about that, contact me :)</span></p>
<p style="text-align: justify; ">Firstly you shuold make a backup of <em><strong><span style="color: #ff0000;">functions.php</span></strong></em><em><strong> (path: wp-contect/themes/your-theme/funcitons.php). </strong><span style="font-style: normal;">After copy this code to end of file:</span></em></p>
<p style="text-align: justify; "><em><span style="font-style: normal;"> </span></em></p>
<p><em> </em></p>
<pre class="brush: plain; title: ; notranslate">if (!function_exists('get_the_modified_author')) {
  function get_the_modified_author() {
    global $post;
    if ( $last_id = get_post_meta($post-&gt;ID, '_edit_last', true) ) {
      $last_user = get_userdata($last_id);
      return apply_filters('the_modified_author', $last_user-&gt;display_name);
    }
  }
}

if (!function_exists('the_modified_author')) {
  function the_modified_author() {
    echo get_the_modified_author();
  }
}
</pre>
<p>After that you can save and upload this to your web server. Than you can use this code anywhere <strong><em>(single.php, index.php etc.</em></strong>):</p>
<p><span style="font-style: normal; "> </span></p>
<pre class="brush: plain; title: ; notranslate">&lt;?php the_modified_author(); ?&gt;</pre>
<p>That&#8217;s All! Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/display-who-modify-your-posts.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Add Author Name to Author Archive</title>
		<link>http://wpfunc.com/wordpress/how-to-add-author-name-to-author-archive.html</link>
		<comments>http://wpfunc.com/wordpress/how-to-add-author-name-to-author-archive.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 17:00:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[else]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=41</guid>
		<description><![CDATA[Hi everybody. Yes we will add author name to archive, admin/editor/publisher archive pages show their name like &#8220;Author archive for (author name)&#8221;. Lets begin&#8230;
First, open your archive.php from your theme folder. This is a sample code, it can be different in your theme.
Find
And replace with;
After you apply this code the author archive page title will [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hi everybody. Yes we will add author name to archive, admin/editor/publisher archive pages show their name like &#8220;Author archive for (author name)&#8221;. Lets begin&#8230;<span id="more-41"></span></p>
<p style="text-align: justify;">First, open your <span style="color: #ff0000;"><strong><em>archive.php</em></strong></span> from your theme folder. This is a sample code, it can be different in your theme.</p>
<h3>Find</h3>
<pre class="brush: plain; title: ; notranslate">&lt; ?php /* If this is an author archive */ } elseif (is_author()) { ?&gt;
&lt;h2&gt;Author Archive for&lt;/h2&gt;</pre>
<h3>And replace with;</h3>
<pre class="brush: plain; title: ; notranslate">&lt; ?php /* If this is an author archive */ } elseif (is_author()) { ?&gt;
&lt; ?php $author = get_userdata( get_query_var('author') );?&gt;
&lt;h2&gt;Author Archive for &lt; ?php echo $author-&gt;display_name;?&gt;&lt;/h2&gt;</pre>
<p style="text-align: justify;">After you apply this code the author archive page title will change like &#8220;<strong>Archive for (author name)</strong>&#8220;.</p>
<p style="text-align: justify;">That code different in my theme. If you click my avatar in the bottom of this post, you call my author archive page and again you can see author name in the bottom of  page.</p>
<p>That&#8217;s All! Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/how-to-add-author-name-to-author-archive.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

