{"id":1847,"date":"2015-02-25T12:55:08","date_gmt":"2015-02-25T20:55:08","guid":{"rendered":"http:\/\/aharon.varady.net\/omphalos\/?p=1847"},"modified":"2015-02-25T20:00:42","modified_gmt":"2015-02-26T04:00:42","slug":"hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress","status":"publish","type":"post","link":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress","title":{"rendered":"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in WordPress"},"content":{"rendered":"<p>For posts with multiple contributors in WordPress, showing multiple names in the byline requires some hacking. One must install the <a href=\"https:\/\/wordpress.org\/plugins\/co-authors-plus\/\">Co-Authors Plus plug-in<\/a> and then edit the code for their particular WordPress theme. Documentation written by Daniel Bachhuber, the author of the Co-Authors Plus plugin is located <a href=\"https:\/\/vip.wordpress.com\/documentation\/incorporate-co-authors-plus-template-tags-into-your-theme\/\">here<\/a>. For those using the <a href=\"https:\/\/wordpress.org\/themes\/atahualpa\">Atahualpa theme<\/a> in WordPress, documentation is uneven, incomplete, and hard to come by. Hopefully, this post will provide more comprehensive guidance and save someone the time I spent I trying to figure this out. You can see an example of my solution in effect at the <a href=\"http:\/\/opensiddur.org\">Open Siddur Project<\/a> &#8212; check out the byline and multiple-author bios in <a href=\"http:\/\/opensiddur.org\/special-days\/commemorative-days\/hanukah\/asarah-btevet-and-the-tragic-side-of-%E1%B8%A5anukah\/\">this post<\/a>. (Please share with me any improvements you might have to what I&#8217;ve written below.)<\/p>\n<h3>First Step<\/h3>\n<p>To add multiple contributors to the byline, I installed the Co-Authors Plus plug-in, and then following <a href=\"http:\/\/forum.bytesforall.com\/showthread.php?t=20110\">Juggledad&#8217;s advice<\/a> replaced a few lines of code in bfa_postinfo.php, a file in the &#8220;functions&#8221; directory of the Atahualpa theme folder. Juggledad says, &#8220;in Atahuapa there are 17 places you will have to change AND you will have to make this change each time you upgrade the theme,&#8221; but I found that I got the desired effect only making this change in three places, replacing &#8220;<code>the_author();<\/code>&#8220;, &#8220;<code>the_author_url();<\/code>&#8220;, &#8220;<code>the_author_link();<\/code>&#8221; with the code, &#8220;<code><span style=\"color: #0000ff;\">coauthors_posts_links();\"<\/span><\/code>, as seen in the following example.<\/p>\n<p><code>\/\/ Author public name<br \/>\n<span style=\"color: #999999;\">if ( strpos($postinfo_string,'%author%') !== FALSE ) {<\/span><\/code><\/p>\n<p style=\"padding-left: 30px;\"><code><span style=\"color: #999999;\">ob_start();<\/span><br \/>\n<strong><span style=\"color: #0000ff;\">the_author();<\/span><\/strong><br \/>\n<span style=\"color: #999999;\">$author = ob_get_contents();<\/span><br \/>\n<span style=\"color: #999999;\"> ob_end_clean();<\/span><br \/>\n<span style=\"color: #999999;\"> $postinfo = str_replace(\"%author%\", $author, $postinfo);<\/span><\/code><\/p>\n<p><code><span style=\"color: #999999;\">}<\/span><br \/>\n<\/code><\/p>\n<p>with<\/p>\n<p><span style=\"color: #999999;\"><code>if ( strpos($postinfo_string,'%author%') !== FALSE ) {<\/code><\/span><\/p>\n<p style=\"padding-left: 30px;\"><code><span style=\"color: #999999;\">ob_start();<\/span><br \/>\n<strong><span style=\"color: #0000ff;\">coauthors_posts_links();<\/span><\/strong><br \/>\n<span style=\"color: #999999;\">$author = ob_get_contents();<\/span><br \/>\n<span style=\"color: #999999;\"> ob_end_clean();<\/span><br \/>\n<span style=\"color: #999999;\"> $postinfo = str_replace(\"%author%\", $author, $postinfo);<\/span><\/code><\/p>\n<p><span style=\"color: #999999;\"><code>}<\/code><\/span><\/p>\n<p>Here&#8217;s my entire modified bfa_postinfo.php file (from Atahualpa version 3.7.22) for comparison.<\/p>\n<p><iframe loading=\"lazy\" src=\"http:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2015\/02\/bfa_postinfo.txt\" frameborder=\"0\" width=\"100%\" height=\"400\" \/><\/iframe><\/p>\n<h3>Second Step<\/h3>\n<p>In the Atahualpa directory, I added the following code to the index.php file inside &#8220;the loop&#8221; between bfa_post_bodycopy and bfa_post_pagination:<\/p>\n<p><iframe loading=\"lazy\" src=\"http:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2015\/02\/multiple-author-bio-code-for-index.txt\" frameborder=\"0\" width=\"100%\" height=\"400\" \/><\/iframe><\/p>\n<p>This is a slightly adapted implementation of a code snippet shared by Daniel Bachhuber <a href=\"https:\/\/danielbachhuber.com\/2012\/01\/22\/show-biographies-for-co-authors-at-the-end-of-your-post\/\">here<\/a>. (User &#8220;Rob_st&#8221; presents an <a href=\"https:\/\/wordpress.org\/support\/topic\/trying-to-display-multiple-author-bios-with-author-bio-box-and-co-authors-plus\">alternative solution<\/a>, however, I couldn&#8217;t figure out how to properly integrate his code snippet without breaking WordPress. Bill Erickson also provides yet <a href=\"http:\/\/iamdavidgray.com\/multiple-authors-wordpress\/\">another solution<\/a> but from what I could tell it is really only relevant for those using the Genesis theme in WordPress.)<\/p>\n<h3>Final Step<\/h3>\n<p>Make sure to make backups of the files you edit in case you misplace a semi-colon and need to backtrack. Save your changes too since you&#8217;ll need to modify these files whenever you update your Atahualpa theme.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For posts with multiple contributors in Wordpress, showing multiple names in the byline requires some hacking. One must install the <a href=\"https:\/\/wordpress.org\/plugins\/co-authors-plus\/\">Co-Authors Plus plug-in<\/a> and then edit the code for their particular Wordpress theme. Documentation written by Daniel Bachuber, the author of the Co-Authors Plus plugin is located <a href=\"https:\/\/vip.wordpress.com\/documentation\/incorporate-co-authors-plus-template-tags-into-your-theme\/\">here<\/a>. For those using the <a href=\"https:\/\/wordpress.org\/themes\/atahualpa\">Atahualpa theme<\/a> in Wordpress, documentation is uneven, incomplete, and hard to come by. Hopefully, this post will provide more comprehensive guidance and save someone the time I spent I trying to figure this out. You can see an example of my solution in effect at the <a href=\"http:\/\/opensiddur.org\">Open Siddur Project<\/a> &#8212; check out the byline and multiple-author bios in <a href=\"http:\/\/opensiddur.org\/special-days\/commemorative-days\/hanukah\/asarah-btevet-and-the-tragic-side-of-%E1%B8%A5anukah\/\">this post<\/a>. (Please share with me any improvements you might have to what I&#8217;ve written below.)<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[54],"tags":[216,204,212,213,214,215],"class_list":["post-1847","post","type-post","status-publish","format-standard","hentry","category-hacking","tag-blurbs","tag-open-siddur-project","tag-atahualpa","tag-co-authors-plus","tag-bios","tag-biographies","odd"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in Wordpress &#8226; Aharon&#039;s Omphalos<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in Wordpress &#8226; Aharon&#039;s Omphalos\" \/>\n<meta property=\"og:description\" content=\"For posts with multiple contributors in Wordpress, showing multiple names in the byline requires some hacking. One must install the Co-Authors Plus plug-in and then edit the code for their particular Wordpress theme. Documentation written by Daniel Bachuber, the author of the Co-Authors Plus plugin is located here. For those using the Atahualpa theme in Wordpress, documentation is uneven, incomplete, and hard to come by. Hopefully, this post will provide more comprehensive guidance and save someone the time I spent I trying to figure this out. You can see an example of my solution in effect at the Open Siddur Project -- check out the byline and multiple-author bios in this post. (Please share with me any improvements you might have to what I&#039;ve written below.)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\" \/>\n<meta property=\"og:site_name\" content=\"Aharon&#039;s Omphalos\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/aharonium\" \/>\n<meta property=\"article:author\" content=\"http:\/\/facebook.com\/aharonium\" \/>\n<meta property=\"article:published_time\" content=\"2015-02-25T20:55:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-02-26T04:00:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2008\/05\/aharons-omphalos.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1257\" \/>\n\t<meta property=\"og:image:height\" content=\"1487\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aharon N. Varady\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/twitter.com\/aharonium\" \/>\n<meta name=\"twitter:site\" content=\"@aharonium\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aharon N. Varady\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\"},\"author\":{\"name\":\"Aharon N. Varady\",\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/#\\\/schema\\\/person\\\/995b8f7b388fb460e5204034604079f5\"},\"headline\":\"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in WordPress\",\"datePublished\":\"2015-02-25T20:55:08+00:00\",\"dateModified\":\"2015-02-26T04:00:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\"},\"wordCount\":385,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/#\\\/schema\\\/person\\\/995b8f7b388fb460e5204034604079f5\"},\"keywords\":[\"blurbs\",\"open siddur project\",\"Atahualpa\",\"Co-Authors Plus\",\"bios\",\"biographies\"],\"articleSection\":[\"Hacking\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\",\"url\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\",\"name\":\"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in Wordpress &#8226; Aharon&#039;s Omphalos\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/#website\"},\"datePublished\":\"2015-02-25T20:55:08+00:00\",\"dateModified\":\"2015-02-26T04:00:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/2015\\\/02\\\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/contact\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/#website\",\"url\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/\",\"name\":\"Aharon's Omphalos\",\"description\":\"spinning navel lint into fine yarn\",\"publisher\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/#\\\/schema\\\/person\\\/995b8f7b388fb460e5204034604079f5\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/#\\\/schema\\\/person\\\/995b8f7b388fb460e5204034604079f5\",\"name\":\"Aharon N. Varady\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Aharon-Varady.jpg\",\"url\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Aharon-Varady.jpg\",\"contentUrl\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Aharon-Varady.jpg\",\"width\":1061,\"height\":1062,\"caption\":\"Aharon N. Varady\"},\"logo\":{\"@id\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Aharon-Varady.jpg\"},\"description\":\"Aharon's Omphalos is the hobbit hole of Aharon Varady, founding director of the Open Siddur Project. He is a community planner and environmental educator working to improve stewardship of the Public Domain, be it the physical and natural commons of urban park systems or the creative and cultural commons of libraries and museums. His advocacy for open-source strategies in the Jewish community has been written about in the Atlantic Magazine, the Yiddish Forverts, Tablet, and Haaretz. He is particularly interested in pedagogies for advancing ecological wisdom, developing creative and emotional intelligence, and realizing effective theurgical praxes. He welcomes your comments, personal messages, and kind words. If you find his work helpful to your own or you'd simply like to support him, please consider donating via his Patreon account.\",\"sameAs\":[\"https:\\\/\\\/aharon.varady.net\",\"http:\\\/\\\/facebook.com\\\/aharonium\",\"https:\\\/\\\/x.com\\\/http:\\\/\\\/twitter.com\\\/aharonium\"],\"url\":\"https:\\\/\\\/aharon.varady.net\\\/omphalos\\\/author\\\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in Wordpress &#8226; Aharon&#039;s Omphalos","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress","og_locale":"en_US","og_type":"article","og_title":"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in Wordpress &#8226; Aharon&#039;s Omphalos","og_description":"For posts with multiple contributors in Wordpress, showing multiple names in the byline requires some hacking. One must install the Co-Authors Plus plug-in and then edit the code for their particular Wordpress theme. Documentation written by Daniel Bachuber, the author of the Co-Authors Plus plugin is located here. For those using the Atahualpa theme in Wordpress, documentation is uneven, incomplete, and hard to come by. Hopefully, this post will provide more comprehensive guidance and save someone the time I spent I trying to figure this out. You can see an example of my solution in effect at the Open Siddur Project -- check out the byline and multiple-author bios in this post. (Please share with me any improvements you might have to what I've written below.)","og_url":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress","og_site_name":"Aharon&#039;s Omphalos","article_publisher":"http:\/\/facebook.com\/aharonium","article_author":"http:\/\/facebook.com\/aharonium","article_published_time":"2015-02-25T20:55:08+00:00","article_modified_time":"2015-02-26T04:00:42+00:00","og_image":[{"width":1257,"height":1487,"url":"https:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2008\/05\/aharons-omphalos.png","type":"image\/png"}],"author":"Aharon N. Varady","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/twitter.com\/aharonium","twitter_site":"@aharonium","twitter_misc":{"Written by":"Aharon N. Varady","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#article","isPartOf":{"@id":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress"},"author":{"name":"Aharon N. Varady","@id":"https:\/\/aharon.varady.net\/omphalos\/#\/schema\/person\/995b8f7b388fb460e5204034604079f5"},"headline":"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in WordPress","datePublished":"2015-02-25T20:55:08+00:00","dateModified":"2015-02-26T04:00:42+00:00","mainEntityOfPage":{"@id":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress"},"wordCount":385,"commentCount":0,"publisher":{"@id":"https:\/\/aharon.varady.net\/omphalos\/#\/schema\/person\/995b8f7b388fb460e5204034604079f5"},"keywords":["blurbs","open siddur project","Atahualpa","Co-Authors Plus","bios","biographies"],"articleSection":["Hacking"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#respond"]}]},{"@type":"WebPage","@id":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress","url":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress","name":"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in Wordpress &#8226; Aharon&#039;s Omphalos","isPartOf":{"@id":"https:\/\/aharon.varady.net\/omphalos\/#website"},"datePublished":"2015-02-25T20:55:08+00:00","dateModified":"2015-02-26T04:00:42+00:00","breadcrumb":{"@id":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/aharon.varady.net\/omphalos\/2015\/02\/hacking-the-atahualpa-theme-for-showing-multiple-author-bylines-and-bios-with-the-co-authors-plus-plug-in-in-wordpress#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aharon.varady.net\/omphalos\/contact"},{"@type":"ListItem","position":2,"name":"Hacking the Atahualpa Theme for Showing Multiple Author Bylines and Bios with the Co-Authors Plus Plug-In in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/aharon.varady.net\/omphalos\/#website","url":"https:\/\/aharon.varady.net\/omphalos\/","name":"Aharon's Omphalos","description":"spinning navel lint into fine yarn","publisher":{"@id":"https:\/\/aharon.varady.net\/omphalos\/#\/schema\/person\/995b8f7b388fb460e5204034604079f5"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aharon.varady.net\/omphalos\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/aharon.varady.net\/omphalos\/#\/schema\/person\/995b8f7b388fb460e5204034604079f5","name":"Aharon N. Varady","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2023\/06\/Aharon-Varady.jpg","url":"https:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2023\/06\/Aharon-Varady.jpg","contentUrl":"https:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2023\/06\/Aharon-Varady.jpg","width":1061,"height":1062,"caption":"Aharon N. Varady"},"logo":{"@id":"https:\/\/aharon.varady.net\/omphalos\/wp-content\/uploads\/2023\/06\/Aharon-Varady.jpg"},"description":"Aharon's Omphalos is the hobbit hole of Aharon Varady, founding director of the Open Siddur Project. He is a community planner and environmental educator working to improve stewardship of the Public Domain, be it the physical and natural commons of urban park systems or the creative and cultural commons of libraries and museums. His advocacy for open-source strategies in the Jewish community has been written about in the Atlantic Magazine, the Yiddish Forverts, Tablet, and Haaretz. He is particularly interested in pedagogies for advancing ecological wisdom, developing creative and emotional intelligence, and realizing effective theurgical praxes. He welcomes your comments, personal messages, and kind words. If you find his work helpful to your own or you'd simply like to support him, please consider donating via his Patreon account.","sameAs":["https:\/\/aharon.varady.net","http:\/\/facebook.com\/aharonium","https:\/\/x.com\/http:\/\/twitter.com\/aharonium"],"url":"https:\/\/aharon.varady.net\/omphalos\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/posts\/1847","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/comments?post=1847"}],"version-history":[{"count":13,"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/posts\/1847\/revisions"}],"predecessor-version":[{"id":1863,"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/posts\/1847\/revisions\/1863"}],"wp:attachment":[{"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/media?parent=1847"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/categories?post=1847"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aharon.varady.net\/omphalos\/wp-json\/wp\/v2\/tags?post=1847"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}