<?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 Tag: thematic_postpooter()</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 02:52:18 +0000</pubDate>

<item>
<title>murky on "thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postfooter#post-1267</link>
<pubDate>Sun, 11 Jan 2009 22:44:31 +0000</pubDate>
<dc:creator>murky</dc:creator>
<guid isPermaLink="false">1267@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;(For clarity, before the final } I put thematic_postfooter(); on its own line)
&#60;/p&#62;</description>
</item>
<item>
<title>murky on "thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postfooter#post-1266</link>
<pubDate>Sun, 11 Jan 2009 22:43:22 +0000</pubDate>
<dc:creator>murky</dc:creator>
<guid isPermaLink="false">1266@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is one of those things that I know *should* be relatively straightforward!
&#60;/p&#62;</description>
</item>
<item>
<title>murky on "thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postfooter#post-1265</link>
<pubDate>Sun, 11 Jan 2009 22:41:56 +0000</pubDate>
<dc:creator>murky</dc:creator>
<guid isPermaLink="false">1265@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;To be honest, I simply don't know how.&#60;/p&#62;
&#60;p&#62;I've added thematic_postfooter(); as the last line of the function, and get this:&#60;/p&#62;
&#60;p&#62;500 Server Error&#60;/p&#62;
&#60;p&#62;A misconfiguration on the server caused a hiccup. Check the server logs, fix the problem, then try again.&#60;/p&#62;
&#60;p&#62;I think it's due to recursion.
&#60;/p&#62;</description>
</item>
<item>
<title>logicoder on "thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postfooter#post-1258</link>
<pubDate>Sun, 11 Jan 2009 17:06:05 +0000</pubDate>
<dc:creator>logicoder</dc:creator>
<guid isPermaLink="false">1258@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Have you tried simply calling thematic_postfooter() INSIDE your childtheme_article_series() function ?&#60;/p&#62;
&#60;p&#62;That way you can use add_action('thematic_postfooter','childtheme_article_series'); without losing content nor forward compatibility.
&#60;/p&#62;</description>
</item>
<item>
<title>murky on "thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postfooter#post-1251</link>
<pubDate>Sun, 11 Jan 2009 12:12:03 +0000</pubDate>
<dc:creator>murky</dc:creator>
<guid isPermaLink="false">1251@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://www.murky.org/blg/thematic-a-problem-with-php/&#34;&#62;Website post on this topic&#60;/a&#62;, which may provide additional information about the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>murky on "thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postfooter#post-1241</link>
<pubDate>Sat, 10 Jan 2009 07:08:48 +0000</pubDate>
<dc:creator>murky</dc:creator>
<guid isPermaLink="false">1241@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I've written a custom function for murkymatic (thematic child theme)&#60;br /&#62;
and I want to hook it into the theme using&#60;br /&#62;
thematic_postfooter()&#60;/p&#62;
&#60;p&#62;I can do this, but unfortunately it destroys the existing&#60;br /&#62;
thematic_postfooter() settings, so I lose all the tags, categories and&#60;br /&#62;
the like&#60;/p&#62;
&#60;p&#62;Ideally, what I'd like to do is:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;CONTENT
 --- Custom theme
Thematic thematic_postfooter()&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Essentially in my functions.php I have:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_article_series() {
(blah)
}
// add_action(&#38;#39;thematic_postfooter&#38;#39;,&#38;#39;childtheme_article_series&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;When I uncomment the add_action, it puts in my stuff okay, but takes&#60;br /&#62;
out the thematic stuff that I want to keep! I could reproduce the&#60;br /&#62;
existing function in mine with cut and paste, but that removes the&#60;br /&#62;
advantage of the theme framework.&#60;/p&#62;
&#60;p&#62;Irrelevantly, my function shows other posts in the same series of posts - it could just as easily do something like showing del.icio.us and digg bookmark links.&#60;/p&#62;
&#60;p&#62;The question is this: Am I missing something obvious? &#60;/p&#62;
&#60;p&#62;Ideally, one of several things could happen:&#60;/p&#62;
&#60;p&#62;1) I hook my function before thematic_postfooter() thus keeping this functionality (is this possible already? Does thematic need an extra hook? Does WP itself have a hook that executes after the_content()?)&#60;br /&#62;
2) I tell my function 'okay, now do thematic_postfooter()'&#60;br /&#62;
3) I copy the functionality of thematic_postfooter into the foot of my function (I tried this and it upset the server, didn't have time to work out why last night - I think this is the least good option as it 'forks' the code and would need updating as thematic changes.&#60;/p&#62;
&#60;p&#62;The function itself can be seen here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://code.google.com/p/murkymatic/source/browse/trunk/functions.php&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/murkymatic/source/browse/trunk/functions.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;function childtheme_article_series()&#60;/code&#62; (currently starting on line 77)&#60;/p&#62;
&#60;p&#62;This is my current 'brick wall', any help gratefully received etc.&#60;/p&#62;
&#60;p&#62;The murkymatic theme can be seen here: &#60;a href=&#34;http://www.murky.org/blg/murkymatic/&#34; rel=&#34;nofollow&#34;&#62;http://www.murky.org/blg/murkymatic/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
