<?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>Pacecode Blog &#187; wordpress author</title>
	<atom:link href="http://www.pacecode.com/blog/tag/wordpress-author/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pacecode.com/blog</link>
	<description>Tips,Ideas, Free scripts and more...</description>
	<lastBuildDate>Sat, 24 Apr 2010 16:39:55 +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>Playing with author feature in Wordpress and author plug-in list</title>
		<link>http://www.pacecode.com/blog/2008/10/19/playing-with-author-feature-in-wordpress-and-author-plug-in-list/</link>
		<comments>http://www.pacecode.com/blog/2008/10/19/playing-with-author-feature-in-wordpress-and-author-plug-in-list/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 12:14:50 +0000</pubDate>
		<dc:creator>Raja MM</dc:creator>
				<category><![CDATA[php scripts]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress author]]></category>
		<category><![CDATA[wordpress author biography]]></category>
		<category><![CDATA[wordpress author feature]]></category>
		<category><![CDATA[wordpress author functions]]></category>
		<category><![CDATA[wordpress scripting tips]]></category>

		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=68</guid>
		<description><![CDATA[If you have a wordpress blog with one or more author, then it  is most important to list author details in the wordpress post pages. The followings  functions will help you list out author details such as

the_author
the_author_description
the_author_login
the_author_firstname
the_author_lastname
the_author_nickname
the_author_ID
the_author_email
the_author_url
the_author_link (Version 2.1)
the_author_aim
the_author_yim
the_author_posts
the_author_posts_link
wp_list_authors

Okay, will discuss in detail below,
the_author 
Description:  it displays  Author&#8217;s &#8216;Public&#8217; Name
Syntax: &#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a wordpress blog with one or more author, then it  is most important to list author details in the wordpress post pages. The followings  functions will help you list out author details such as</p>
<ul>
<li>the_author</li>
<li>the_author_description</li>
<li>the_author_login</li>
<li>the_author_firstname</li>
<li>the_author_lastname</li>
<li>the_author_nickname</li>
<li>the_author_ID</li>
<li>the_author_email</li>
<li>the_author_url</li>
<li>the_author_link (Version 2.1)</li>
<li>the_author_aim</li>
<li>the_author_yim</li>
<li>the_author_posts</li>
<li>the_author_posts_link</li>
<li>wp_list_authors</li>
</ul>
<p>Okay, will discuss in detail below,</p>
<h2><strong>the_author </strong></h2>
<p><strong>Description</strong>:  it displays  Author&#8217;s &#8216;Public&#8217; Name</p>
<p><strong>Syntax</strong>: &lt;?php the_author(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt; this post was written by &lt;?php the_author(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_description</strong></h2>
<p><strong>Description:</strong> Displays the contents of the about yourself  field in an author&#8217;s profile (Administration &gt; Profile &gt; Your Profile).  About yourself is a block of text often used to publicly describe the user and  can be quite long. This tag must be used within The Loop.</p>
<p><strong>Syntax:</strong> &lt;?php  the_author_description(); ?&gt;</p>
<pre><strong>Example:</strong> &lt;p&gt;Cindy biography: &lt;?php the_author_description(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_login</strong></h2>
<p><strong>Description:</strong> This tag displays the login name of the author  of a post. The login is also referred to as the Username an author uses to gain  access to a Wordpress blog. This tag must be used within The Loop</p>
<p><strong>Note:</strong> It&#8217;s  usually not a good idea to provide login information publicly. But it can be  used for some other  purposes</p>
<p><strong>Syntax:</strong> &lt;?php  the_author_login(); ?&gt;</p>
<pre><strong>Example:</strong> &lt;p&gt;Author username: &lt;?php the_author_login(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>The_author_firstname,  the_author_</strong> <strong>lastname, the_author_</strong> <strong>nickname</strong></h2>
<p><strong>Description</strong>:  The following tags display the name for the  author of a post. The First Name field is set in the user&#8217;s profile  (Administration &gt; Profile &gt; Your Profile). This tag must be used within  The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php the_author_firstname(); ?&gt;,  &lt;?php the_author_nickname(); ?&gt;, &lt;?php the_author_lastname(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt;This post was written by &lt;?php the_author_firstname(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_ID</strong></h2>
<p><strong>Description</strong>:  Displays the unique numeric user ID for the  author of a post; the ID is assigned by Wordpress when a user account is  created. This tag must be used within The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_ID(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;a href="/blog/index.php?author=&lt;?php the_author_ID(); ?&gt;"&gt;View all</pre>
<pre>posts by &lt;?php the_author_nickname(); ?&gt;&lt;/a&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_email</strong></h2>
<p><strong>Description</strong>:  This tag displays the email address for the  author of a post. The E-mail field is set in the user&#8217;s profile (Administration  &gt; Profile &gt; Your Profile). This function must be used within The Loop.</p>
<p>Note that the address  is <strong>not</strong> encoded or protected in any way from harvesting by spambots</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_email(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;a href="mailto:&lt;?php the_author_email(); ?&gt;"&gt;Contact the author&lt;/a&gt;</pre>
<pre><strong>Secure your author’s email:</strong></pre>
<pre>This example partially 'obfuscates' address by using the internal function antispambot()
to encode portions in HTML character entities (these are read correctly by your browser).
Note the example uses get_the_author_email() function, because the_author_email()
echoes the address before antispambot() can act upon it.</pre>
<pre>Eg: &lt;a href="mailto:&lt;?php echo antispambot(get_the_author_email()); ?&gt;"&gt;email</pre>
<pre> author&lt;/a&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_url</strong></h2>
<p><strong>Description</strong>:  This tag displays the URL to the Website for  the author of a post. The Website field is set in the user&#8217;s profile  (Administration &gt; Profile &gt; Your Profile). This tag must be used within  The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_url(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt;Author's web site:</pre>
<pre>&lt;a href="&lt;?php the_author_url(); ?&gt;"&gt;&lt;?php the_author_url(); ?&gt;&lt;/a&gt;&lt;/p&gt;</pre>
<pre><strong> </strong></pre>
<p>
<hr /></p>
<h2><strong>the_author_aim</strong></h2>
<p><strong>Description</strong>:  This tag displays the AOL Instant Messenger  screenname for the author of a post. The AIM field is set in the user&#8217;s profile  (Administration &gt; Profile &gt; Your Profile). This tag must be used within  The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_aim(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt;Contact me on AOL Instant Messenger: &lt;?php the_author_aim(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_yim</strong></h2>
<p><strong>Description</strong>: This  tag displays the Yahoo IM ID for the author of a post. The Yahoo IM field is  set in the user&#8217;s profile (Administration &gt; Profile &gt; Your Profile). This  tag must be used within The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_yim(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt;Contact me on Yahoo Messenger: &lt;?php the_author_yim(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_posts</strong></h2>
<p><strong>Description</strong>:  Displays the total number of posts an author  has published. Drafts and private posts aren&#8217;t counted. This tag must be used  within The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_posts(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt;&lt;?php the_author(); ?&gt; has blogged &lt;?php the_author_posts(); ?&gt;</pre>
<pre>posts&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>the_author_posts_link</strong></h2>
<p><strong>Description</strong>:  Displays a link to all posts by an author. The  link text is the user&#8217;s Display name publicly as field. The results of clicking  on the presented link will be controlled by the Template Hierarchy of Author  Templates. This tag must be used within The Loop.</p>
<p><strong>Syntax</strong>: &lt;?php  the_author_posts_link(); ?&gt;</p>
<pre><strong>Example</strong>: &lt;p&gt;Other posts by &lt;?php the_author_posts_link(); ?&gt;&lt;/p&gt;</pre>
<p>
<hr /></p>
<h2><strong>wp_list_authors</strong></h2>
<p><strong>Description</strong>:  Displays a list of the blog&#8217;s authors (users),  and if the user has authored any posts, the author name is displayed as a link  to their posts. Optionally this tag displays each author&#8217;s post count and RSS  feed link.</p>
<p><strong>Syntax</strong>: &lt;?php  wp_list_authors(&#8216;arguments&#8217;); ?&gt;</p>
<pre><strong>Example</strong>: &lt;?php $defaults = array(</pre>
<pre>          'optioncount' =&gt; false,</pre>
<pre>          'exclude_admin' =&gt; true,</pre>
<pre>          'show_fullname' =&gt; false,</pre>
<pre>          'hide_empty' =&gt; true,</pre>
<pre>          'feed' =&gt; ,</pre>
<pre>          'feed_image' =&gt;  ); ?&gt;</pre>
<pre>By default, the usage shows:</pre>
<pre>    * Does not display the count of the number of posts</pre>
<pre>    * Excludes the 'admin' author from the list</pre>
<pre>    * Does not display the full name (first and last) but displays the author nickname</pre>
<pre>    * Excludes users with no posts</pre>
<pre>    * No author feed text is displayed</pre>
<pre>    * No author feed image is displayed</pre>
<pre><strong>&lt;?php  wp_list_authors('show_fullname=1&amp;optioncount=1'); ?&gt;
</strong></pre>
<p>
<hr /></p>
<h2>Author image in every post &#8211; Plug in:</h2>
<p><strong>Description: </strong></p>
<div>Display image (if present) and/or name for the author of a post, or for all authors on the blog.</div>
<p><strong>for more info and downloads</strong>:http://coffee2code.com/wp-plugins/author-images/</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this post</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;submitHeadline=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;title=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;title=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;title=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;bm_description=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;T=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;title=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;title=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Playing+with+author+feature+in+Wordpress+and+author+plug-in+list+@+http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F10%2F19%2Fplaying-with-author-feature-in-wordpress-and-author-plug-in-list%2F&amp;t=Playing+with+author+feature+in+Wordpress+and+author+plug-in+list" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.pacecode.com/blog/2008/10/19/playing-with-author-feature-in-wordpress-and-author-plug-in-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
