<?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: thematic_postheader_postmeta display error in Thematic 0.9.6.1</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 22 May 2013 13:36:03 +0000</pubDate>

<item>
<title>Gigi on "thematic_postheader_postmeta display error in Thematic 0.9.6.1"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader_postmeta-display-error-in-thematic-0961#post-19917</link>
<pubDate>Tue, 22 Mar 2011 18:28:53 +0000</pubDate>
<dc:creator>Gigi</dc:creator>
<guid isPermaLink="false">19917@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;What code would you insert to declare this to a specific category?  Or, better yet, exclude a specific category?
&#60;/p&#62;</description>
</item>
<item>
<title>allancole on "thematic_postheader_postmeta display error in Thematic 0.9.6.1"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader_postmeta-display-error-in-thematic-0961#post-10073</link>
<pubDate>Tue, 23 Feb 2010 00:54:51 +0000</pubDate>
<dc:creator>allancole</dc:creator>
<guid isPermaLink="false">10073@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;That did it! Thanks again Chris.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "thematic_postheader_postmeta display error in Thematic 0.9.6.1"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader_postmeta-display-error-in-thematic-0961#post-10017</link>
<pubDate>Sun, 21 Feb 2010 20:23:37 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">10017@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Allan,&#60;/p&#62;
&#60;p&#62;try this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//	Custom Post Header Meta
function childtheme_postheader_postmeta() {
    global $post;
    if (is_page()) { ?&#38;gt;

    &#38;lt;?php } else {
    	return &#38;#39;&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;&#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; . get_the_time(&#38;#39;Y-m-d\TH:i:sO&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . get_the_time(&#38;#39;F j, Y&#38;#39;) . &#38;#39;&#38;lt;/abbr&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
    } }
add_filter (&#38;#39;thematic_postheader_postmeta&#38;#39;, &#38;#39;childtheme_postheader_postmeta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>allancole on "thematic_postheader_postmeta display error in Thematic 0.9.6.1"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader_postmeta-display-error-in-thematic-0961#post-9937</link>
<pubDate>Thu, 18 Feb 2010 23:43:28 +0000</pubDate>
<dc:creator>allancole</dc:creator>
<guid isPermaLink="false">9937@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I’ve noticed something pretty weird in Thematic 0.9.6.1. I’m using a filter to remove all of the default post-meta and replace it with my own markup. It works, but for some reason the post-header-title markup gets pushed below the post-header-meta.&#60;/p&#62;
&#60;p&#62;Here’s my filter.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//	Custom Post Header Meta
function childtheme_postheader_postmeta() {
    global $post;
    if (is_page()) { ?&#38;gt;

    &#38;lt;?php } else { ?&#38;gt;
    	&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;&#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;lt;?php the_time(&#38;#39;Y-m-d\TH:i:sO&#38;#39;) ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_time(&#38;#39;F j, Y&#38;#39;) ?&#38;gt;&#38;lt;/abbr&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;
    &#38;lt;?php } }
add_filter (&#38;#39;thematic_postheader_postmeta&#38;#39;, &#38;#39;childtheme_postheader_postmeta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And here’s what how the markup looks when that filter is in use:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;post-450&#38;quot; class=&#38;quot;hentry more-classes&#38;quot;&#38;gt;
	&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;entry-date&#38;quot;&#38;gt;&#38;lt;abbr class=&#38;quot;published&#38;quot; title=&#38;quot;2009-11-07T00:59:34+0000&#38;quot;&#38;gt;November 7, 2009&#38;lt;/abbr&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;
	&#38;lt;h2 class=&#38;quot;entry-title&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://localhost:8888/?p=450&#38;quot; title=&#38;quot;Permalink Title&#38;quot; rel=&#38;quot;bookmark&#38;quot;&#38;gt;Post Title&#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
	&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
…&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Any ideas as to what could be causing this? I’ve checked out the &#60;em&#62;content-extensions.php&#60;/em&#62; file and haven’t been able to figure out what it could be.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
