<?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: how to get rid of entry-utility?</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 23 May 2013 19:54:19 +0000</pubDate>

<item>
<title>arturkim on "how to get rid of entry-utility?"</title>
<link>http://themeshaper.com/forums/topic/how-to-get-rid-of-entry-utility#post-12570</link>
<pubDate>Tue, 25 May 2010 00:43:03 +0000</pubDate>
<dc:creator>arturkim</dc:creator>
<guid isPermaLink="false">12570@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The following code should do what you want. First, I removed postfooter which is where entry-utility is in. Then, I modified postheader_postmeta to display categories instead of author.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* Remove postfooter */
function remove_postfooter() {
	/* bye postfooter */
}
add_filter(&#38;#39;thematic_postfooter&#38;#39;, &#38;#39;remove_postfooter&#38;#39;);

/* Modify postheader_postmeta */
function childtheme_postheader_postmeta() {

	$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;cat-links&#38;quot;&#38;gt;&#38;#39;;
	if (is_single()) {
		$postmeta .= __(&#38;#39;This entry was posted in &#38;#39;, &#38;#39;thematic&#38;#39;) . get_the_category_list(&#38;#39;, &#38;#39;);
		$postmeta .= &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
	} elseif ( is_category() &#38;#38;&#38;#38; $cats_meow = thematic_cats_meow(&#38;#39;, &#38;#39;) ) { /* Returns categories other than the one queried */
		$postmeta .= __(&#38;#39;Also posted in &#38;#39;, &#38;#39;thematic&#38;#39;) . $cats_meow;
		$postmeta .= &#38;#39;&#38;lt;/span&#38;gt; &#38;lt;span class=&#38;quot;meta-sep meta-sep-tag-links&#38;quot;&#38;gt;&#124;&#38;lt;/span&#38;gt;&#38;#39;;
	} else {
		$postmeta .= __(&#38;#39;Posted in &#38;#39;, &#38;#39;thematic&#38;#39;) . get_the_category_list(&#38;#39;, &#38;#39;);
		$postmeta .= &#38;#39;&#38;lt;/span&#38;gt; &#38;lt;span class=&#38;quot;meta-sep meta-sep-entry-date&#38;quot;&#38;gt;&#124; &#38;lt;/span&#38;gt;&#38;#39;;
	}
	$postmeta .= thematic_postmeta_entrydate();
	$postmeta .= thematic_postmeta_editlink();

	$postmeta .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-meta --&#38;gt;\n&#38;quot;;

	return apply_filters(&#38;#39;childtheme_postheader_postmeta&#38;#39;,$postmeta); 

}
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;Artur Kim
&#60;/p&#62;</description>
</item>
<item>
<title>arveerella on "how to get rid of entry-utility?"</title>
<link>http://themeshaper.com/forums/topic/how-to-get-rid-of-entry-utility#post-12540</link>
<pubDate>Sun, 23 May 2010 02:42:01 +0000</pubDate>
<dc:creator>arveerella</dc:creator>
<guid isPermaLink="false">12540@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i'm trying to get rid of entry-utlity... i wanted to place my categories in entry-meta and remove the author-vcard... how do i do that?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
