<?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 User Favorites: optimus203</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 01:09:38 +0000</pubDate>

<item>
<title>helgatheviking on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-24313</link>
<pubDate>Thu, 15 Dec 2011 02:25:00 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24313@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it's bloated b/c you don't need 2 functions to hook into thematic_abovemainasides.  if you need 2 divs, just put them both in one function.
&#60;/p&#62;</description>
</item>
<item>
<title>Gigi on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-24312</link>
<pubDate>Thu, 15 Dec 2011 02:22:01 +0000</pubDate>
<dc:creator>Gigi</dc:creator>
<guid isPermaLink="false">24312@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well I found a way but I'm not sure if it's bloated or not.  This is what I have:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// ADD DIV ABOVE AND BELOW PRIMARY ASIDE STARTS HERE

// Begin div ABOVE primary aside
function start_aside_top() { ?&#38;gt;

&#38;lt;!-- aside wrap starts here --&#38;gt;
&#38;lt;div id=&#38;quot;aside-wrap-top&#38;quot;&#38;gt;

&#38;lt;?php } // end of our new function start_aside_top

// Add starting div to above primary aside
add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;start_aside_top&#38;#39;);

// Begin closing div to above primary aside
function end_aside_top() { ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;!-- aside wrap ends here --&#38;gt;

&#38;lt;?php } // end of our new function end_aside_top

add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;end_aside_top&#38;#39;); 

// Begin div BELOW primary aside
function start_aside_bottom() { ?&#38;gt;

&#38;lt;!-- aside wrap starts here --&#38;gt;
&#38;lt;div id=&#38;quot;aside-wrap-bottom&#38;quot;&#38;gt;

&#38;lt;?php } // end of our new function start_aside_bottom

// Add starting div
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;start_aside_bottom&#38;#39;);

// Begin closing div
function end_aside_bottom() { ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;!-- aside wrap ends here --&#38;gt;

&#38;lt;?php } // end of our new function end_aside_bottom

// Add closing div
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;end_aside_bottom&#38;#39;); 

// ADD DIV ABOVE AND BELOW PRIMARY ASIDE ENDS HERE&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Gigi on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-24310</link>
<pubDate>Thu, 15 Dec 2011 00:16:28 +0000</pubDate>
<dc:creator>Gigi</dc:creator>
<guid isPermaLink="false">24310@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Is there any way to see the code for Helga's suggestion: &#34;open the div on the thematic_abovemainasides hook and close the div on the thematic_betweenmainasides hook.&#34; I tried a couple of ways but came up empty handed...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-23867</link>
<pubDate>Sat, 19 Nov 2011 12:58:08 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23867@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it's the same process.  take a look in the extensions folder of thematic to find the right filter and function names to target.
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-23865</link>
<pubDate>Sat, 19 Nov 2011 01:58:17 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">23865@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Nice one, as always! I chose the function route. And what about entry-utility?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-23864</link>
<pubDate>Sat, 19 Nov 2011 01:41:23 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23864@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;several ways to skin the cat (where &#60;em&#62;did&#60;/em&#62; that phrase come from anyway).  to completely remove the post meta you could do:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;thematic_postheader&#38;#39;,&#38;#39;htv_postheader&#38;#39;);

function htv_postheader() {
   $postheader = thematic_postheader_posttitle();
   return $postheader;
}  // end postheader&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;thematic_postheader&#38;#39;,&#38;#39;htv_postheader_postmeta&#38;#39;);

function htv_postheader_postmeta() {
   //sound of one hand clapping
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or if you wanted to go the function route you could do:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_override_postheader_postmeta(){
   //sound of one hand clapping
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;please check out my explanation of hooks and filters:&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-23863</link>
<pubDate>Sat, 19 Nov 2011 01:34:22 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">23863@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I would like to know how to remove this using functions, as opposed to hiding with css.&#60;/p&#62;
&#60;p&#62;How would I go about removing the meta-date and entry-utility using hooks?
&#60;/p&#62;</description>
</item>
<item>
<title>petergus on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-22865</link>
<pubDate>Sat, 27 Aug 2011 00:22:09 +0000</pubDate>
<dc:creator>petergus</dc:creator>
<guid isPermaLink="false">22865@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I know this is old but seems like a relevant place to ask it....&#60;/p&#62;
&#60;p&#62;how can we hide it in pages and search results, but still let it apear on post (in the 'blog')?
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "i think i found an easy way to add category icons for each post"</title>
<link>http://themeshaper.com/forums/topic/i-think-i-found-an-easy-way-to-add-category-icons-for-each-post#post-21557</link>
<pubDate>Mon, 30 May 2011 19:23:46 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">21557@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Very nice and simple solution to a problem I was having. Thanks for sharing.
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-21556</link>
<pubDate>Mon, 30 May 2011 19:07:42 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">21556@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Perfect. Loving the ease of this framework. Thank you kindly. Take care...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-21555</link>
<pubDate>Mon, 30 May 2011 18:12:01 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21555@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;open the div on the thematic_abovemainasides hook and close the div on the thematic_betweenmainasides hook.
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-21554</link>
<pubDate>Mon, 30 May 2011 17:58:00 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">21554@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey everyone. I'm new to Thematic and PHP, and hoping to get some help on this small issue. I'm trying to wrap the #primary widget div in a new div. Can anyone provide the proper function to help make this happen? Any help would be greatly appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>4rederick on "i think i found an easy way to add category icons for each post"</title>
<link>http://themeshaper.com/forums/topic/i-think-i-found-an-easy-way-to-add-category-icons-for-each-post#post-21344</link>
<pubDate>Tue, 17 May 2011 20:13:08 +0000</pubDate>
<dc:creator>4rederick</dc:creator>
<guid isPermaLink="false">21344@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Great. This is simple. Always the best way. Thanks for sharing, js09.
&#60;/p&#62;</description>
</item>
<item>
<title>oldmankit on "i think i found an easy way to add category icons for each post"</title>
<link>http://themeshaper.com/forums/topic/i-think-i-found-an-easy-way-to-add-category-icons-for-each-post#post-19251</link>
<pubDate>Fri, 18 Feb 2011 02:54:04 +0000</pubDate>
<dc:creator>oldmankit</dc:creator>
<guid isPermaLink="false">19251@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey!  What a great piece of advice!  Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How to insert shortcode into post content area?"</title>
<link>http://themeshaper.com/forums/topic/how-to-insert-shortcode-into-post-content-area#post-18866</link>
<pubDate>Tue, 01 Feb 2011 08:34:28 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">18866@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;all the loops are shown in the content-extensions.php file in the thematic/extensions/lib folder.  you can copy any of them into your child's functions.php and rename it to childtheme_override_some_function_name().  you can insert your code there.&#60;/p&#62;
&#60;p&#62;you could also filter the thematic_content conditionally, but i think the override might be easier.  &#60;/p&#62;
&#60;p&#62;and since you mention custom post types your way isn't totally wrong. due to template hierarchy WP searches for single-customposttype.php and if it doesn't find that falls back to single.php.  plus i never say stuff is wrong if it works, &#60;em&#62;best&#60;/em&#62; practice can be debatable,  but out and out wrong, meh.
&#60;/p&#62;</description>
</item>
<item>
<title>trevorgreenfield on "How to insert shortcode into post content area?"</title>
<link>http://themeshaper.com/forums/topic/how-to-insert-shortcode-into-post-content-area#post-18864</link>
<pubDate>Tue, 01 Feb 2011 07:02:15 +0000</pubDate>
<dc:creator>trevorgreenfield</dc:creator>
<guid isPermaLink="false">18864@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well, since I got no responses here or in the WP forums, I was forces to do it the wrong way.  I have no idea where to properly inject my shortcodes in the functions of the loop, I have altered the single.php in my child theme to single-customposttypename.php and essentially removed the thematic_singlepost function, then rebuilt it using HTML and PHP.  Its ugly, and its wrong, but it works.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// calling the widget area &#38;#39;single-top&#38;#39;
    	        get_sidebar(&#38;#39;single-top&#38;#39;);

		?&#38;gt;

		&#38;lt;div id=&#38;quot;title&#38;quot; class=&#38;quot;entry-title&#38;quot;&#38;gt;&#38;lt;?php wp_title(); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div id=&#38;quot;rr-tngreview&#38;quot;&#38;gt;&#38;lt;?php echo do_shortcode(&#38;#39;[xydac_field]tngreview[/xydac_field]&#38;#39;); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div id=&#38;quot;link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo do_shortcode(&#38;#39;[xydac_field]link[/xydac_field]&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;Visit the Website&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div id=&#38;quot;image-from-website&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php echo do_shortcode(&#38;#39;[xydac_field]image-from-website[/xydac_field]&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div id=&#38;quot;copied-text-from-website&#38;quot;&#38;gt;From the Website:&#38;lt;?php echo do_shortcode(&#38;#39;[xydac_field]copied-text-from-website[/xydac_field]&#38;#39;); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div id=&#38;quot;testimonials&#38;quot;&#38;gt;&#38;lt;?php echo do_shortcode(&#38;#39;[xydac_field]testimonials[/xydac_field]&#38;#39;); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div id=&#38;quot;link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo do_shortcode(&#38;#39;[xydac_field]link[/xydac_field]&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;Visit the Website&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;

		&#38;lt;?php

    	        // action hook creating the single post.  Commented and added the manual title php and echo shortcodes to get the shortcodes to work right. Uncomment the line below to return to original.
    	        // thematic_singlepost();&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>trevorgreenfield on "How to insert shortcode into post content area?"</title>
<link>http://themeshaper.com/forums/topic/how-to-insert-shortcode-into-post-content-area#post-18863</link>
<pubDate>Tue, 01 Feb 2011 03:19:42 +0000</pubDate>
<dc:creator>trevorgreenfield</dc:creator>
<guid isPermaLink="false">18863@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I mean insert it into the .entry-content area
&#60;/p&#62;</description>
</item>
<item>
<title>trevorgreenfield on "How to insert shortcode into post content area?"</title>
<link>http://themeshaper.com/forums/topic/how-to-insert-shortcode-into-post-content-area#post-18850</link>
<pubDate>Mon, 31 Jan 2011 20:16:56 +0000</pubDate>
<dc:creator>trevorgreenfield</dc:creator>
<guid isPermaLink="false">18850@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have tried and tried, but cannot figure out where to insert shortcode, which refers to custom fields as you can see here &#60;a href=&#34;http://wordpress.org/support/topic/plugin-ultimate-post-type-manager-display-custom-fields-in-template&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/plugin-ultimate-post-type-manager-display-custom-fields-in-template&#60;/a&#62; .&#60;/p&#62;
&#60;p&#62;If you can please direct me to where in PHP I need to insert the shortcode so that it automatically outputs the shortcode (which then displays the custom fields) in the .edit-content area, I would be very appreciative.&#60;/p&#62;
&#60;p&#62;I am using a thematic subtheme.&#60;/p&#62;
&#60;p&#62;Trevor
&#60;/p&#62;</description>
</item>
<item>
<title>jcollier on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-16230</link>
<pubDate>Tue, 12 Oct 2010 18:59:52 +0000</pubDate>
<dc:creator>jcollier</dc:creator>
<guid isPermaLink="false">16230@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you! This is exactly what I was looking for!&#60;/p&#62;
&#60;p&#62;-Jay
&#60;/p&#62;</description>
</item>
<item>
<title>Robo on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-13409</link>
<pubDate>Sat, 26 Jun 2010 11:55:54 +0000</pubDate>
<dc:creator>Robo</dc:creator>
<guid isPermaLink="false">13409@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi everyone, any idea how to filter the_tags to remove or limit the number of tags displayed after a post.
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-12014</link>
<pubDate>Fri, 30 Apr 2010 03:57:38 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">12014@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hi all...&#60;/p&#62;
&#60;p&#62;how can i filter the index title&#60;/p&#62;
&#60;p&#62;i want to add a little arrow like Ian has on &#60;a href=&#34;http://wpazo.com/&#34; rel=&#34;nofollow&#34;&#62;http://wpazo.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-11956</link>
<pubDate>Wed, 28 Apr 2010 13:06:32 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">11956@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm not sure why you're getting the open H1. archerjd's way would have worked on the category page but removed the page title in all other instances. You need to return the original functions data if the condition of your filter is not met.&#60;/p&#62;
&#60;p&#62;Try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function your_page_title_filter($content) {
		if (is_category()) {
				$content  = &#38;#39;&#38;lt;h1 class=&#38;quot;page-title&#38;quot;&#38;gt;&#38;#39;;
				$content .= __(&#38;#39;&#38;#39;, &#38;#39;thematic&#38;#39;);
				$content .= &#38;#39; &#38;lt;span&#38;gt;&#38;#39;;
				$content .= single_cat_title(&#38;#39;&#38;#39;, FALSE);
				$content .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#38;#39;;
				if ( !(&#38;#39;&#38;#39;== category_description()) ) : $content .= apply_filters(&#38;#39;archive_meta&#38;#39;, category_description()); endif;
				$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
		}
			return $content;
	}
add_filter(&#38;#39;thematic_page_title&#38;#39;, &#38;#39;your_page_title_filter&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As a side note: The period at the end of the sentence inside your anchor tag the link leads to a 404 where you have two search inputs I'm assuming you intended to have only one search on that page.
&#60;/p&#62;</description>
</item>
<item>
<title>whatsthebigidea on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-11953</link>
<pubDate>Wed, 28 Apr 2010 12:09:02 +0000</pubDate>
<dc:creator>whatsthebigidea</dc:creator>
<guid isPermaLink="false">11953@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks guys! Unfortunately, the resulting code leaves the page with an open h1 tag: &#60;a href=&#34;http://www.rsci.com/tools-hand-power.&#34; rel=&#34;nofollow&#34;&#62;http://www.rsci.com/tools-hand-power.&#60;/a&#62; At the same time, archerjd fixed an open div tag.
&#60;/p&#62;</description>
</item>
<item>
<title>archerjd on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-11430</link>
<pubDate>Wed, 14 Apr 2010 17:55:59 +0000</pubDate>
<dc:creator>archerjd</dc:creator>
<guid isPermaLink="false">11430@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;missed an open bracket ( on the add_filter but you get the picture!
&#60;/p&#62;</description>
</item>
<item>
<title>archerjd on "Filter thematic loop"</title>
<link>http://themeshaper.com/forums/topic/filter-thematic-loop#post-11429</link>
<pubDate>Wed, 14 Apr 2010 17:55:00 +0000</pubDate>
<dc:creator>archerjd</dc:creator>
<guid isPermaLink="false">11429@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm not sure whether @whatsthebigidea ever solved his problem but I find this code works for filtering the page title - its copied from the &#60;em&#62;content_extensions.php&#60;/em&#62;&#60;em&#62;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function your_page_title_filter() {
		global $post;
		$content = &#38;#39;&#38;#39;; //MAKE SURE YOU DEFINE THIS AS EMPTY HERE

		if (is_category()) {
				$content .= &#38;#39;&#38;lt;h1 class=&#38;quot;page-title&#38;quot;&#38;gt;&#38;#39;; //BEGIN CODE HERE
				$content .= __(&#38;#39;&#38;#39;, &#38;#39;thematic&#38;#39;);
				$content .= &#38;#39; &#38;lt;span&#38;gt;&#38;#39;;
				$content .= single_cat_title(&#38;#39;&#38;#39;, FALSE);
				$content .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#38;#39;;
				if ( !(&#38;#39;&#38;#39;== category_description()) ) : $content .= apply_filters(&#38;#39;archive_meta&#38;#39;, category_description()); endif;
				$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;

	} 

			return $content;
	}

add_filter(&#38;#39;thematic_page_title&#38;#39;, &#38;#39;your_page_title_filter&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;/em&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>DHS on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-9715</link>
<pubDate>Thu, 11 Feb 2010 19:32:14 +0000</pubDate>
<dc:creator>DHS</dc:creator>
<guid isPermaLink="false">9715@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Nevermind! Silly me, I copy/pasted from the site, must have had some erroneous character.  I copy/pasted into a text editor first, all good.  Awesome! Now if I can get rid of it on the mobile side, I'm golden!
&#60;/p&#62;</description>
</item>
<item>
<title>DHS on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-9714</link>
<pubDate>Thu, 11 Feb 2010 19:29:49 +0000</pubDate>
<dc:creator>DHS</dc:creator>
<guid isPermaLink="false">9714@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This suggestion does not appear to be working for me.  I am working on a site here: &#60;a href=&#34;http://www.OwlFood.net/demo&#34; rel=&#34;nofollow&#34;&#62;http://www.OwlFood.net/demo&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My goal is to have it simply display the title of each post, nothing more, yet the author and timestamp remain.&#60;/p&#62;
&#60;p&#62;Greatly appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>JonMack on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-8971</link>
<pubDate>Mon, 11 Jan 2010 09:57:21 +0000</pubDate>
<dc:creator>JonMack</dc:creator>
<guid isPermaLink="false">8971@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Correct! I'd have thought if you're customising a theme you'd have a basic understanding of CSS but I guess not...
&#60;/p&#62;</description>
</item>
<item>
<title>anthony99 on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-8953</link>
<pubDate>Sun, 10 Jan 2010 12:08:57 +0000</pubDate>
<dc:creator>anthony99</dc:creator>
<guid isPermaLink="false">8953@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I figured it out! I was able to remove everything by using this in the style.css:&#60;/p&#62;
&#60;p&#62;.entry-meta .meta-prep-author, .entry-meta .author, .entry-meta  .meta-sep-entry-date, .entry-meta .meta-prep-entry-date, .entry-meta .entry-date{display:none;}&#60;/p&#62;
&#60;p&#62;Now, if I want to put By Author back in, I assume I'll have to take out&#60;/p&#62;
&#60;p&#62;.entry-meta .meta-prep-author, .entry-meta .author
&#60;/p&#62;</description>
</item>
<item>
<title>anthony99 on "How To Remove Timestamp and By..."</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-timestamp-and-by#post-8951</link>
<pubDate>Sun, 10 Jan 2010 11:21:45 +0000</pubDate>
<dc:creator>anthony99</dc:creator>
<guid isPermaLink="false">8951@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Specifically, I should remove this section of code? Or somehow disable it?&#60;/p&#62;
&#60;p&#62;$postmeta .= '&#38;lt;/span&#38;gt;&#38;lt;span class=&#34;meta-sep meta-sep-entry-date&#34;&#38;gt; &#124; &#38;lt;/span&#38;gt;';&#60;br /&#62;
    $postmeta .= '&#38;lt;span class=&#34;meta-prep meta-prep-entry-date&#34;&#38;gt;' . __('Published: ', 'thematic') . '&#38;lt;/span&#38;gt;';&#60;br /&#62;
    $postmeta .= '&#38;lt;span class=&#34;entry-date&#34;&#38;gt;&#38;lt;abbr class=&#34;published&#34; title=&#34;';&#60;br /&#62;
    $postmeta .= get_the_time(thematic_time_title()) . '&#34;&#38;gt;';&#60;br /&#62;
    $postmeta .= get_the_time(thematic_time_display());&#60;br /&#62;
    $postmeta .= '&#38;lt;/abbr&#38;gt;&#38;lt;/span&#38;gt;';
&#60;/p&#62;</description>
</item>

</channel>
</rss>
