<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Master Author Archives</title>
	<atom:link href="http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 23:07:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Di</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7181</link>
		<dc:creator>Di</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7181</guid>
		<description>Sigh. I am so glad you are here. This is just what I was looking for. You rock!
</description>
		<content:encoded><![CDATA[<p>Sigh. I am so glad you are here. This is just what I was looking for. You rock!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M E-L</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7180</link>
		<dc:creator>M E-L</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7180</guid>
		<description>Just for the php newbies like myself, if you&#039;re implementing Danny&#039;s solution you&#039;ll need to put 

&lt;?php 
 $author = $_GET[&#039;author&#039;];
 ?&gt;

up at the top of your page, so it can get the author variable from the URL (i.e., www.yourblog.net/authors.php?author=ishbadiddle)</description>
		<content:encoded><![CDATA[<p>Just for the php newbies like myself, if you&#039;re implementing Danny&#039;s solution you&#039;ll need to put </p>
<p>&lt;?php<br />
 $author = $_GET['author'];<br />
 ?&gt;</p>
<p>up at the top of your page, so it can get the author variable from the URL (i.e., <a href="http://www.yourblog.net/authors.php?author=ishbadiddle" rel="nofollow">http://www.yourblog.net/authors.php?author=ishbadiddle</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: no1son</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7178</link>
		<dc:creator>no1son</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7178</guid>
		<description>nevermind, figured it out!

&lt;a href=&quot;http://www.superdeluxo.com/suckit&quot;&gt;here!&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>nevermind, figured it out!</p>
<p><a href="http://www.superdeluxo.com/suckit">here!</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny Froberg</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7179</link>
		<dc:creator>Danny Froberg</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7179</guid>
		<description>Hi thought i&#039;d pay you back for the inspiration your snippets and pages gave me to solve  my entries by author problem ;)

I did a fully automatic version based on your idea;
take a look at http://www.advancedpowers.com/blog/authors.php?author=wizard

&lt;h3&gt;
Using inspiration from http://www.scriptygoddess.com/archives/001072.php (great gal) i poked around a bit and came up with the following solution to automatically generating authors list and the entries by author page (authors.php) 
I use 2 plugins MTCollate and MTAuthors. The MTCollate  is optional i just liked it alot becuase of the added sorting etc.

Using this in any sidebars where i want to link to the authors page;
&lt;h3&gt;
&lt;div class=&quot;side&quot;&gt;
&lt;MTCollateCollect&gt;
&lt;MTAuthors&gt;
&lt;MTCollateRecord&gt;
&lt;MTCollateSetField name=&quot;name&quot;&gt;&lt;MTAuthorName&gt;&lt;/MTCollateSetField&gt;
&lt;MTCollateSetField name=&quot;nick&quot;&gt;&lt;MTAuthorNickname&gt;&lt;/MTCollateSetField&gt;
&lt;MTCollateSetField name=&quot;url&quot;&gt;&lt;MTAuthorURL&gt;&lt;/MTCollateSetField&gt;
&lt;MTCollateSetField name=&quot;posts&quot;&gt;&lt;MTAuthorEntryCount&gt;&lt;/MTCollateSetField&gt;
&lt;/MTCollateRecord&gt;
&lt;/MTAuthors&gt;
&lt;/MTCollateCollect&gt;

&lt;MTCollateList sort=&quot;name:+&quot;&gt;
&lt;a href=&quot;authors.php?author=&lt;MTCollateField name=&quot;name&quot;&gt;&quot;&gt;
&lt;MTCollateField name=&quot;name&quot;&gt; (&lt;MTCollateField name=&quot;posts&quot;&gt;)
&lt;/a&gt;&lt;br /&gt;
&lt;/MTCollateList&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/h3&gt;

and this code in authors.php since MTAuthors has the nice sideeffect of setting the MTEntries context to the current author being listed.

&lt;h3&gt;
&lt;MTAuthors&gt;
&lt;? if($author == &quot;&lt;MTAuthorName&gt;&quot;) { ?&gt;
	&lt;h2 class=&quot;date&quot;&gt;
	&lt;strong&gt;&lt;MTAuthorName&gt; (&lt;MTAuthorEntryCount&gt; posts)&lt;/strong&gt;
      	&lt;/h2&gt;
&lt;MTEntries&gt;
&lt;$MTEntryDate format=&quot;%x&quot;$&gt; &lt;a href=&quot;&lt;$MTEntryLink$&gt;&quot;&gt;&lt;$MTEntryTitle$&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/MTEntries&gt;
&lt;? } ?&gt;
&lt;/MTAuthors&gt;
&lt;/h3&gt;
Hope it helps someone.
&lt;/h3&gt;</description>
		<content:encoded><![CDATA[<p>Hi thought i&#039;d pay you back for the inspiration your snippets and pages gave me to solve  my entries by author problem <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I did a fully automatic version based on your idea;<br />
take a look at <a href="http://www.advancedpowers.com/blog/authors.php?author=wizard" rel="nofollow">http://www.advancedpowers.com/blog/authors.php?author=wizard</a></p>
<h3>
Using inspiration from <a href="http://www.scriptygoddess.com/archives/001072.php" rel="nofollow">http://www.scriptygoddess.com/archives/001072.php</a> (great gal) i poked around a bit and came up with the following solution to automatically generating authors list and the entries by author page (authors.php)<br />
I use 2 plugins MTCollate and MTAuthors. The MTCollate  is optional i just liked it alot becuase of the added sorting etc.</p>
<p>Using this in any sidebars where i want to link to the authors page;<br />
</h3>
<h3>
&lt;div class=&#034;side&#034;&gt;<br />
&lt;MTCollateCollect&gt;<br />
&lt;MTAuthors&gt;<br />
&lt;MTCollateRecord&gt;<br />
&lt;MTCollateSetField name=&#034;name&#034;&gt;&lt;MTAuthorName&gt;&lt;/MTCollateSetField&gt;<br />
&lt;MTCollateSetField name=&#034;nick&#034;&gt;&lt;MTAuthorNickname&gt;&lt;/MTCollateSetField&gt;<br />
&lt;MTCollateSetField name=&#034;url&#034;&gt;&lt;MTAuthorURL&gt;&lt;/MTCollateSetField&gt;<br />
&lt;MTCollateSetField name=&#034;posts&#034;&gt;&lt;MTAuthorEntryCount&gt;&lt;/MTCollateSetField&gt;<br />
&lt;/MTCollateRecord&gt;<br />
&lt;/MTAuthors&gt;<br />
&lt;/MTCollateCollect&gt;</p>
<p>&lt;MTCollateList sort=&#034;name:+&#034;&gt;<br />
&lt;a href=&#034;authors.php?author=&lt;MTCollateField name=&#034;name&#034;&gt;&#034;&gt;<br />
&lt;MTCollateField name=&#034;name&#034;&gt; (&lt;MTCollateField name=&#034;posts&#034;&gt;)<br />
&lt;/a&gt;&lt;br /&gt;<br />
&lt;/MTCollateList&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
</h3>
<p>and this code in authors.php since MTAuthors has the nice sideeffect of setting the MTEntries context to the current author being listed.</p>
<h3>
&lt;MTAuthors&gt;<br />
&lt;? if($author == &#034;&lt;MTAuthorName&gt;&#034;) { ?&gt;<br />
	&lt;h2 class=&#034;date&#034;&gt;<br />
	&lt;strong&gt;&lt;MTAuthorName&gt; (&lt;MTAuthorEntryCount&gt; posts)&lt;/strong&gt;<br />
      	&lt;/h2&gt;<br />
&lt;MTEntries&gt;<br />
&lt;$MTEntryDate format=&#034;%x&#034;$&gt; &lt;a href=&#034;&lt;$MTEntryLink$&gt;&#034;&gt;&lt;$MTEntryTitle$&gt;&lt;/a&gt;&lt;br /&gt;<br />
&lt;/MTEntries&gt;<br />
&lt;? } ?&gt;<br />
&lt;/MTAuthors&gt;<br />
</h3>
<p>Hope it helps someone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: no1son</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7177</link>
		<dc:creator>no1son</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7177</guid>
		<description>hiya, smart people.

i am working on a group blog with some friends.  trying to get it up to snuff.  it&#039;s over &lt;a href=&quot;http://www.superdeluxo.com/suckit/&quot;&gt;here&lt;/a&gt;.

i am using the dropdown menu thingie.  i would love it if i could use this code to somehow have a dropdown of authors.  if i have to create each author by hand for the dropdown options, that&#039;s fine.  any help is appreciated.  thanks in advance.

here&#039;s a look at the code i&#039;m using for a dropdown:
&lt;h3&gt;
&lt;!--By Month--&gt;
&lt;div class=&quot;side&quot;&gt;
 &lt;select style=&quot;width:150px;&quot; onchange=&quot;document.location=options[selectedIndex].value;&quot; class=&quot;jumpbox&quot;&gt;
 &lt;option value=&quot;&quot; selected=&quot;selected&quot;&gt;By Date...&lt;/option&gt;
&lt;option value=&quot;&quot;&gt;---&lt;/option&gt;
&lt;MTArchiveList archive_type=&quot;Monthly&quot;&gt;
&lt;option value=&quot;&lt;&#036;MTArchiveLink&#036;&gt;&quot;&gt;&lt;&#036;MTArchiveTitle&#036;&gt; (&lt;&#036;MTArchiveCount&#036;&gt;)&lt;/option&gt;
&lt;/MTArchiveList&gt;
&lt;/select&gt;
&lt;/div&gt;
&lt;/h3&gt;</description>
		<content:encoded><![CDATA[<p>hiya, smart people.</p>
<p>i am working on a group blog with some friends.  trying to get it up to snuff.  it&#039;s over <a href="http://www.superdeluxo.com/suckit/">here</a>.</p>
<p>i am using the dropdown menu thingie.  i would love it if i could use this code to somehow have a dropdown of authors.  if i have to create each author by hand for the dropdown options, that&#039;s fine.  any help is appreciated.  thanks in advance.</p>
<p>here&#039;s a look at the code i&#039;m using for a dropdown:</p>
<h3>
&lt;!&#8211;By Month&#8211;&gt;<br />
&lt;div class=&#034;side&#034;&gt;<br />
 &lt;select style=&#034;width:150px;&#034; onchange=&#034;document.location=options[selectedIndex].value;&#034; class=&#034;jumpbox&#034;&gt;<br />
 &lt;option value=&#034;" selected=&#034;selected&#034;>By Date&#8230;&lt;/option&gt;<br />
&lt;option value=&#034;">&#8212;&lt;/option&gt;<br />
&lt;MTArchiveList archive_type=&#034;Monthly&#034;&gt;<br />
&lt;option value=&#034;&lt;&#36;MTArchiveLink&#36;&gt;&#034;&gt;&lt;&#36;MTArchiveTitle&#36;&gt; (&lt;&#36;MTArchiveCount&#36;&gt;)&lt;/option&gt;<br />
&lt;/MTArchiveList&gt;<br />
&lt;/select&gt;<br />
&lt;/div&gt;<br />
</h3>
]]></content:encoded>
	</item>
	<item>
		<title>By: brutalside</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7175</link>
		<dc:creator>brutalside</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7175</guid>
		<description>nice</description>
		<content:encoded><![CDATA[<p>nice</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Howard</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7176</link>
		<dc:creator>Howard</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7176</guid>
		<description>Ok, this is probably a too-newbie question, but - once you&#039;ve created that new index template, how is the snippet of code you&#039;ve outlined above calling it when you click &quot;by author&quot;. 
Specifically - what makes &#039;by author&#039; go display that authors page as opposed to a category archive page or something?</description>
		<content:encoded><![CDATA[<p>Ok, this is probably a too-newbie question, but &#8211; once you&#039;ve created that new index template, how is the snippet of code you&#039;ve outlined above calling it when you click &#034;by author&#034;.<br />
Specifically &#8211; what makes &#039;by author&#039; go display that authors page as opposed to a category archive page or something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melanie</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7174</link>
		<dc:creator>Melanie</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7174</guid>
		<description>is there a way to actually create the author list dynamically?</description>
		<content:encoded><![CDATA[<p>is there a way to actually create the author list dynamically?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynda</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7172</link>
		<dc:creator>Lynda</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7172</guid>
		<description>Ack.  Sorry!  I forgot to add in my dollar sign. :)

I tend to do that from time to time. hehe.  Thank God parse errors tell me what line the error is on. :)</description>
		<content:encoded><![CDATA[<p>Ack.  Sorry!  I forgot to add in my dollar sign. <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I tend to do that from time to time. hehe.  Thank God parse errors tell me what line the error is on. <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: itzpapalotl</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/comment-page-1/#comment-7173</link>
		<dc:creator>itzpapalotl</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7173</guid>
		<description>Thanks guys. You rock.</description>
		<content:encoded><![CDATA[<p>Thanks guys. You rock.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.375 seconds -->
