<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: Adding multiple authors</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 23:33:02 +0000</pubDate>

<item>
<title>jgreenwood on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-17613</link>
<pubDate>Wed, 08 Dec 2010 08:09:02 +0000</pubDate>
<dc:creator>jgreenwood</dc:creator>
<guid isPermaLink="false">17613@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ah, the linking and styling was easier than expected; just use the $coauthors variable to fill in the link address and title blank spots, all wrapped in the appropriate span and link css class&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//  add additional authors to posts
function my_post_meta_authorlink() {

	    global $authordata, $post;

   $coauthor = get_post_meta ($post-&#38;gt;ID, &#38;#39;Coauthors&#38;#39;, true);
	    $authorlink = &#38;#39;&#38;lt;span class=&#38;quot;meta-prep meta-prep-author&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;By &#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
	    $authorlink .= &#38;#39;&#38;lt;span class=&#38;quot;author vcard&#38;quot;&#38;gt;&#38;#39;. &#38;#39;&#38;lt;a class=&#38;quot;url fn n&#38;quot; href=&#38;quot;&#38;#39;;
	    $authorlink .= get_author_posts_url($authordata-&#38;gt;ID, $authordata-&#38;gt;user_nicename);
	    $authorlink .= &#38;#39;&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;View all posts by &#38;#39;, &#38;#39;thematic&#38;#39;) . get_the_author_meta( &#38;#39;display_name&#38;#39; ) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
	    $authorlink .= get_the_author_meta( &#38;#39;display_name&#38;#39; );

	    $authorlink .= &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
	if ($coauthor) {   $authorlink .= &#38;#39; and &#38;lt;span class=&#38;quot;author vcard&#38;quot;&#38;gt;&#38;lt;a class=&#38;quot;url fn n&#38;quot; href=&#38;quot;/author/&#38;#39; . $coauthor . &#38;#39;&#38;quot; title=&#38;quot;View all posts by &#38;#39; . $coauthor . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . $coauthor . &#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;  }
	    $authorlink .= &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;

    return $authorlink;

} 

add_filter(&#38;#39;thematic_post_meta_authorlink&#38;#39;,&#38;#39;my_post_meta_authorlink&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>jgreenwood on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-17599</link>
<pubDate>Wed, 08 Dec 2010 06:00:56 +0000</pubDate>
<dc:creator>jgreenwood</dc:creator>
<guid isPermaLink="false">17599@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sweet, I've got the core functionality figured out, at least.  I need to add style and also would like to make coauthors names link to their additional posts, but this keeps me publishing for yet another day and I can figure the rest out with time.&#60;/p&#62;
&#60;p&#62;NOTE this does NOT use the PLUGIN mentioned at start of this thread.  This uses no plugin whatsoever, only added this inside my child theme's functions.php and use &#34;Coauthors&#34; as the name of the custom field in the posts.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//  add additional authors to posts where &#38;quot;Coauthors&#38;quot; is the custom field
function my_post_meta_authorlink() {

	    global $authordata, $post;

   $coauthor = get_post_meta ($post-&#38;gt;ID, &#38;#39;Coauthors&#38;#39;, true);
	    $authorlink = &#38;#39;&#38;lt;span class=&#38;quot;meta-prep meta-prep-author&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;By &#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
	    $authorlink .= &#38;#39;&#38;lt;span class=&#38;quot;author vcard&#38;quot;&#38;gt;&#38;#39;. &#38;#39;&#38;lt;a class=&#38;quot;url fn n&#38;quot; href=&#38;quot;&#38;#39;;
	    $authorlink .= get_author_posts_url($authordata-&#38;gt;ID, $authordata-&#38;gt;user_nicename);
	    $authorlink .= &#38;#39;&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;View all posts by &#38;#39;, &#38;#39;thematic&#38;#39;) . get_the_author_meta( &#38;#39;display_name&#38;#39; ) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
	    $authorlink .= get_the_author_meta( &#38;#39;display_name&#38;#39; );
	    $authorlink .= &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
	if ($coauthor) {   $authorlink .= &#38;#39;, &#38;#39; . $coauthor;  }
	    $authorlink .= &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;

    return $authorlink;

} 

add_filter(&#38;#39;thematic_post_meta_authorlink&#38;#39;,&#38;#39;my_post_meta_authorlink&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also please note there is likely some more efficient way of doing this; I am just a learn-as-I-go PHP guy, and this is working for me right here and now.  Improvement suggestions very welcome!&#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
</item>
<item>
<title>jgreenwood on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-17597</link>
<pubDate>Wed, 08 Dec 2010 04:27:31 +0000</pubDate>
<dc:creator>jgreenwood</dc:creator>
<guid isPermaLink="false">17597@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;So my next thought is, can additional authors be added to a post using custom fields and then displayed publicly using thematic_post_meta_authorlink?  Without using any plugin.  If anyone knows this, please speak up!  If I get it figured out, I will of course share my solution.  Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>jgreenwood on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-17595</link>
<pubDate>Wed, 08 Dec 2010 03:41:44 +0000</pubDate>
<dc:creator>jgreenwood</dc:creator>
<guid isPermaLink="false">17595@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Actually I decided to stop using this plugin ...  thanks anyway.  Cheers!
&#60;/p&#62;</description>
</item>
<item>
<title>jgreenwood on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-17573</link>
<pubDate>Tue, 07 Dec 2010 06:50:08 +0000</pubDate>
<dc:creator>jgreenwood</dc:creator>
<guid isPermaLink="false">17573@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@Chris&#60;/p&#62;
&#60;p&#62;Your functions.php snippet works for me!  Thank you very much.&#60;/p&#62;
&#60;p&#62;But, it does not apply the link styles to the_coauthor(), namely the class=&#34;url fn n&#34;.&#60;/p&#62;
&#60;p&#62;Also, the post 'Edit' link does not appear after the '&#124;' character.&#60;/p&#62;
&#60;p&#62;Thanks for any insight!&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Joe
&#60;/p&#62;</description>
</item>
<item>
<title>petskratt on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-15802</link>
<pubDate>Fri, 24 Sep 2010 07:14:03 +0000</pubDate>
<dc:creator>petskratt</dc:creator>
<guid isPermaLink="false">15802@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;... and thanks to childtheme overrides you can achieve that also like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
// support multiple authors using Co-Authors Plus plugin&#60;/p&#62;
&#60;p&#62;function childtheme_singleauthorlink () {&#60;br /&#62;
  global $authordata;&#60;br /&#62;
  $result = '&#38;lt;span class=&#34;author vcard&#34;&#38;gt;'. '&#38;lt;a class=&#34;url fn n&#34; href=&#34;';&#60;br /&#62;
  $result .= get_author_posts_url($authordata-&#38;gt;ID, $authordata-&#38;gt;user_nicename);&#60;br /&#62;
  $result .= '&#34; title=&#34;' . __('View all posts by ', 'thematic') . get_the_author() . '&#34;&#38;gt;';&#60;br /&#62;
  $result .= get_the_author();&#60;br /&#62;
  $result .= '&#38;lt;/span&#38;gt;';&#60;br /&#62;
  return $result;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function childtheme_override_postmeta_authorlink() {&#60;/p&#62;
&#60;p&#62;  $i = new CoAuthorsIterator();&#60;/p&#62;
&#60;p&#62;  if(function_exists('coauthors_posts_links')) {&#60;br /&#62;
    $authorlink = '&#38;lt;span class=&#34;meta-prep meta-prep-author&#34;&#38;gt;' . _n('Author ', 'Authors ', $i-&#38;gt;count(), 'childtextdomain') . '&#38;lt;/span&#38;gt;';&#60;br /&#62;
    $i-&#38;gt;iterate();&#60;br /&#62;
    $authorlink .= childtheme_singleauthorlink ();&#60;br /&#62;
    while($i-&#38;gt;iterate()){&#60;br /&#62;
      if (!$i-&#38;gt;is_last()) $authorlink .= ', ';&#60;br /&#62;
      else $authorlink .= __(' and ', 'childtextdomain');&#60;br /&#62;
      $authorlink .= childtheme_singleauthorlink ();&#60;br /&#62;
    }&#60;br /&#62;
    $authorlink .= '&#38;lt;/span&#38;gt;';&#60;/p&#62;
&#60;p&#62;  }&#60;br /&#62;
  else {&#60;br /&#62;
    $authorlink = '&#38;lt;span class=&#34;meta-prep meta-prep-author&#34;&#38;gt;' . __('By ', 'thematic') . '&#38;lt;/span&#38;gt;';&#60;br /&#62;
    $authorlink .= childtheme_singleauthorlink ();&#60;br /&#62;
  }&#60;/p&#62;
&#60;p&#62;  return apply_filters('thematic_post_meta_authorlink', $authorlink);&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6219</link>
<pubDate>Sat, 29 Aug 2009 07:34:23 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6219@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;No problem here.&#60;/p&#62;
&#60;p&#62;This is the code I used in my functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function the_coauthor() {
	ob_start();
	coauthors_posts_links();
	$content = ob_get_contents();
	ob_end_clean();
	return $content;
}

function my_postmeta() {
    global $id, $post, $authordata;
    $postmeta = &#38;#39;&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;&#38;#39;;
    $postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;meta-prep meta-prep-author&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;By &#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
	$postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;author vcard&#38;quot;&#38;gt;&#38;#39;;
    $postmeta .= the_coauthor();
    $postmeta .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;meta-sep&#38;quot;&#38;gt; &#124; &#38;lt;/span&#38;gt;&#38;#39;;
    $postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;meta-prep meta-prep-entry-date&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Published: &#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
    $postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;entry-date&#38;quot;&#38;gt;&#38;lt;abbr class=&#38;quot;published&#38;quot; title=&#38;quot;&#38;#39;;
    $postmeta .= get_the_time(thematic_time_title()) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
    $postmeta .= get_the_time(thematic_time_display());
    $postmeta .= &#38;#39;&#38;lt;/abbr&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;
    // Display edit link
    if (current_user_can(&#38;#39;edit_posts&#38;#39;)) {
        $postmeta .= &#38;#39; &#38;lt;span class=&#38;quot;meta-sep meta-sep-edit&#38;quot;&#38;gt;&#124;&#38;lt;/span&#38;gt; &#38;#39; . &#38;#39;&#38;lt;span class=&#38;quot;edit&#38;quot;&#38;gt;&#38;#39; . $posteditlink . &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
    }
    $postmeta .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-meta --&#38;gt;\n&#38;quot;;
	return $postmeta;
}
add_filter(&#38;#39;thematic_postheader_postmeta&#38;#39;, &#38;#39;my_postmeta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Kabitzin on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6212</link>
<pubDate>Fri, 28 Aug 2009 15:07:40 +0000</pubDate>
<dc:creator>Kabitzin</dc:creator>
<guid isPermaLink="false">6212@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This seems to work but when saving the post, I get the following error:&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at [mydomain child theme folder]/functions.php:103)in [mydomain]/wp-includes/pluggable.php on line 865&#60;/p&#62;
&#60;p&#62;The post shows up correctly in previews, but I get this error whenever I try to modify/save the post.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6198</link>
<pubDate>Thu, 27 Aug 2009 20:46:34 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6198@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Without any warranty:&#60;/p&#62;
&#60;p&#62;Change the following code from Björn's guide:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;author vcard&#38;quot;&#38;gt;&#38;#39;;
    $postmeta .= __(&#38;#39;By &#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;a class=&#38;quot;url fn n&#38;quot; href=&#38;quot;&#38;#39;;
    $postmeta .= get_author_link(false, $authordata-&#38;gt;ID, $authordata-&#38;gt;user_nicename);
    $postmeta .= &#38;#39;&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;View all posts by &#38;#39;, &#38;#39;thematic&#38;#39;) . get_the_author() . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
    $postmeta .= get_the_author();
    $postmeta .= &#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;meta-sep&#38;quot;&#38;gt; &#124; &#38;lt;/span&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;author vcard&#38;quot;&#38;gt;&#38;#39;;
    $postmeta .= __(&#38;#39;By &#38;#39;, &#38;#39;thematic&#38;#39;);
    $postmeta .= the_coauthor();
    $postmeta .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;meta-sep&#38;quot;&#38;gt; &#124; &#38;lt;/span&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Kabitzin on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6176</link>
<pubDate>Thu, 27 Aug 2009 05:29:17 +0000</pubDate>
<dc:creator>Kabitzin</dc:creator>
<guid isPermaLink="false">6176@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I pasted Chris' code as a function in my functions.php file in my child theme, and then copied and renamed the post header function, like in &#60;a href=&#34;http://www.bendler.tv/?p=327&#34;&#62;the guide&#60;/a&#62;.  However, I am not sure where to put &#34;the_coauthors()&#34; in the customized post_header function.
&#60;/p&#62;</description>
</item>
<item>
<title>mosesj on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6171</link>
<pubDate>Thu, 27 Aug 2009 02:04:08 +0000</pubDate>
<dc:creator>mosesj</dc:creator>
<guid isPermaLink="false">6171@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I pasted the function in the functions.php file of my child theme, added &#34;the_coauthors()&#34; to my postheader, and it worked like a charm. Thanks so much!
&#60;/p&#62;</description>
</item>
<item>
<title>Kabitzin on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6159</link>
<pubDate>Wed, 26 Aug 2009 05:01:04 +0000</pubDate>
<dc:creator>Kabitzin</dc:creator>
<guid isPermaLink="false">6159@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Where would you put this code if you are using your own child theme?
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6141</link>
<pubDate>Tue, 25 Aug 2009 21:10:33 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6141@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok .. the code would be:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function the_coauthor() {
	ob_start();
	coauthors_posts_links();
	$content = ob_get_contents();
	ob_end_clean();
	return $content;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You might want to add some more data to coauthors_posts_links() (see its documentation). the_coauthor will return the needed data to filter entry-meta.&#60;/p&#62;
&#60;p&#62;Haven't tested this code. Please let me know if it works.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6135</link>
<pubDate>Tue, 25 Aug 2009 15:48:16 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6135@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;take a look here: &#60;a href=&#34;http://themeshaper.com/forums/topic/using-wp-postratings#post-1732&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/using-wp-postratings#post-1732&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The solution is similar.&#60;/p&#62;
&#60;p&#62;Will post the code for co-author plus later today.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Kabitzin on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6133</link>
<pubDate>Tue, 25 Aug 2009 14:57:27 +0000</pubDate>
<dc:creator>Kabitzin</dc:creator>
<guid isPermaLink="false">6133@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm also interested in using the co-authors plus plugin.  Unfortunately the plugin's functions do not seem to return a value, and so it doesn't look that easy to edit the thematic hooks-filter.php to return the multiple authors.
&#60;/p&#62;</description>
</item>
<item>
<title>mosesj on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6127</link>
<pubDate>Mon, 24 Aug 2009 23:54:41 +0000</pubDate>
<dc:creator>mosesj</dc:creator>
<guid isPermaLink="false">6127@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Could I trouble you to explain the no-so-favorite solution? I'm on deadline for a project and can't figure out how to make co-authors and Thematic play nice.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6068</link>
<pubDate>Sat, 22 Aug 2009 16:16:17 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6068@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;.. will contact the plugin author to provide a function that returns the value. &#60;/p&#62;
&#60;p&#62;There's another way to do this right now, but this is not my favorite way to solve this problem.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>mosesj on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-6003</link>
<pubDate>Thu, 20 Aug 2009 14:52:19 +0000</pubDate>
<dc:creator>mosesj</dc:creator>
<guid isPermaLink="false">6003@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes! I'm stumped with this problem, too. I'd be grateful if someone could help explain how to display co-authors within the Thematic framework.&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Jacob
&#60;/p&#62;</description>
</item>
<item>
<title>neverknock on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-5333</link>
<pubDate>Fri, 24 Jul 2009 05:30:31 +0000</pubDate>
<dc:creator>neverknock</dc:creator>
<guid isPermaLink="false">5333@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here are the three plugins I know about:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.techspikes.com/2009/04/assign-multiple-authors-to-blog-posts/&#34; rel=&#34;nofollow&#34;&#62;http://www.techspikes.com/2009/04/assign-multiple-authors-to-blog-posts/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm not aware of another way. And it seems this discussion says as much:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/ideas/topic.php?id=514&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/ideas/topic.php?id=514&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-5317</link>
<pubDate>Thu, 23 Jul 2009 19:04:51 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">5317@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Don't you have any alternative to this plugin??&#60;/p&#62;
&#60;p&#62;This plugins only echoes the results. You need something that returns a value.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>neverknock on "Adding multiple authors"</title>
<link>http://themeshaper.com/forums/topic/adding-multiple-authors#post-5307</link>
<pubDate>Thu, 23 Jul 2009 14:03:48 +0000</pubDate>
<dc:creator>neverknock</dc:creator>
<guid isPermaLink="false">5307@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm stumped: I can't figure out how to use the &#34;Co-author plus&#34; plugin with in the Thematic-Acamas platform. It requires modifying code within template pages; however, the instructions are vague and don't correspond to the code I see in the templates. I'm grateful for any help you can provide. Thanks.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
