<?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"
	>
<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>
	<pubDate>Mon, 08 Sep 2008 15:28:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Di</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/27/master-author-archives/#comment-7181</link>
		<dc:creator>Di</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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-7180</link>
		<dc:creator>M E-L</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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're implementing Danny's solution you'll need to put 

&#60;?php 
 $author = $_GET['author'];
 ?&#62;

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&#8217;re implementing Danny&#8217;s solution you&#8217;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-7178</link>
		<dc:creator>no1son</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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="http://www.superdeluxo.com/suckit"&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-7179</link>
		<dc:creator>Danny Froberg</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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'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;
&#60;div class="side"&#62;
&#60;MTCollateCollect&#62;
&#60;MTAuthors&#62;
&#60;MTCollateRecord&#62;
&#60;MTCollateSetField name="name"&#62;&#60;MTAuthorName&#62;&#60;/MTCollateSetField&#62;
&#60;MTCollateSetField name="nick"&#62;&#60;MTAuthorNickname&#62;&#60;/MTCollateSetField&#62;
&#60;MTCollateSetField name="url"&#62;&#60;MTAuthorURL&#62;&#60;/MTCollateSetField&#62;
&#60;MTCollateSetField name="posts"&#62;&#60;MTAuthorEntryCount&#62;&#60;/MTCollateSetField&#62;
&#60;/MTCollateRecord&#62;
&#60;/MTAuthors&#62;
&#60;/MTCollateCollect&#62;

&#60;MTCollateList sort="name:+"&#62;
&#60;a href="authors.php?author=&#60;MTCollateField name="name"&#62;"&#62;
&#60;MTCollateField name="name"&#62; (&#60;MTCollateField name="posts"&#62;)
&#60;/a&#62;&#60;br /&#62;
&#60;/MTCollateList&#62;
&#60;/div&#62;
&#60;/div&#62;
&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;
&#60;MTAuthors&#62;
&#60;? if($author == "&#60;MTAuthorName&#62;") { ?&#62;
	&#60;h2 class="date"&#62;
	&#60;strong&#62;&#60;MTAuthorName&#62; (&#60;MTAuthorEntryCount&#62; posts)&#60;/strong&#62;
      	&#60;/h2&#62;
&#60;MTEntries&#62;
&#60;$MTEntryDate format="%x"$&#62; &#60;a href="&#60;$MTEntryLink$&#62;"&#62;&#60;$MTEntryTitle$&#62;&#60;/a&#62;&#60;br /&#62;
&#60;/MTEntries&#62;
&#60;? } ?&#62;
&#60;/MTAuthors&#62;
&lt;/h3&gt;
Hope it helps someone.
&lt;/h3&gt;</description>
		<content:encoded><![CDATA[<p>Hi thought i&#8217;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' /><br />
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=&#8221;side&#8221;&gt;<br />
&lt;MTCollateCollect&gt;<br />
&lt;MTAuthors&gt;<br />
&lt;MTCollateRecord&gt;<br />
&lt;MTCollateSetField name=&#8221;name&#8221;&gt;&lt;MTAuthorName&gt;&lt;/MTCollateSetField&gt;<br />
&lt;MTCollateSetField name=&#8221;nick&#8221;&gt;&lt;MTAuthorNickname&gt;&lt;/MTCollateSetField&gt;<br />
&lt;MTCollateSetField name=&#8221;url&#8221;&gt;&lt;MTAuthorURL&gt;&lt;/MTCollateSetField&gt;<br />
&lt;MTCollateSetField name=&#8221;posts&#8221;&gt;&lt;MTAuthorEntryCount&gt;&lt;/MTCollateSetField&gt;<br />
&lt;/MTCollateRecord&gt;<br />
&lt;/MTAuthors&gt;<br />
&lt;/MTCollateCollect&gt;</p>
<p>&lt;MTCollateList sort=&#8221;name:+&#8221;&gt;<br />
&lt;a href=&#8221;authors.php?author=&lt;MTCollateField name=&#8221;name&#8221;&gt;&#8221;&gt;<br />
&lt;MTCollateField name=&#8221;name&#8221;&gt; (&lt;MTCollateField name=&#8221;posts&#8221;&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 == &#8220;&lt;MTAuthorName&gt;&#8221;) { ?&gt;<br />
	&lt;h2 class=&#8221;date&#8221;&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=&#8221;%x&#8221;$&gt; &lt;a href=&#8221;&lt;$MTEntryLink$&gt;&#8221;&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-7177</link>
		<dc:creator>no1son</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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's over &lt;a href="http://www.superdeluxo.com/suckit/"&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's fine.  any help is appreciated.  thanks in advance.

here's a look at the code i'm using for a dropdown:
&lt;h3&gt;
&#60;!--By Month--&#62;
&#60;div class="side"&#62;
 &#60;select style="width:150px;" onchange="document.location=options[selectedIndex].value;" class="jumpbox"&#62;
 &#60;option value="" selected="selected"&gt;By Date...&#60;/option&#62;
&#60;option value=""&gt;---&#60;/option&#62;
&#60;MTArchiveList archive_type="Monthly"&#62;
&#60;option value="&#60;&#36;MTArchiveLink&#36;&#62;"&#62;&#60;&#36;MTArchiveTitle&#36;&#62; (&#60;&#36;MTArchiveCount&#36;&#62;)&#60;/option&#62;
&#60;/MTArchiveList&#62;
&#60;/select&#62;
&#60;/div&#62;
&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&#8217;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&#8217;s fine.  any help is appreciated.  thanks in advance.</p>
<p>here&#8217;s a look at the code i&#8217;m using for a dropdown:</p>
<h3>
&lt;!&#8211;By Month&#8211;&gt;<br />
&lt;div class=&#8221;side&#8221;&gt;<br />
 &lt;select style=&#8221;width:150px;&#8221; onchange=&#8221;document.location=options[selectedIndex].value;&#8221; class=&#8221;jumpbox&#8221;&gt;<br />
 &lt;option value=&#8221;" selected=&#8221;selected&#8221;>By Date&#8230;&lt;/option&gt;<br />
&lt;option value=&#8221;">&#8212;&lt;/option&gt;<br />
&lt;MTArchiveList archive_type=&#8221;Monthly&#8221;&gt;<br />
&lt;option value=&#8221;&lt;&#36;MTArchiveLink&#36;&gt;&#8221;&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-7175</link>
		<dc:creator>brutalside</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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-7176</link>
		<dc:creator>Howard</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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've created that new index template, how is the snippet of code you've outlined above calling it when you click "by author". 
Specifically - what makes 'by author' 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 - once you&#8217;ve created that new index template, how is the snippet of code you&#8217;ve outlined above calling it when you click &#8220;by author&#8221;.<br />
Specifically - what makes &#8216;by author&#8217; 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-7174</link>
		<dc:creator>Melanie</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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-7172</link>
		<dc:creator>Lynda</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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' /><br />
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-7173</link>
		<dc:creator>itzpapalotl</dc:creator>
		<pubDate>Tue, 30 Nov 1999 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.328 seconds -->
