<?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: meta</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 19 Jun 2013 06:48:28 +0000</pubDate>

<item>
<title>helgatheviking on "Question about "the loop""</title>
<link>http://themeshaper.com/forums/topic/question-about-the-loop#post-23954</link>
<pubDate>Sun, 27 Nov 2011 21:26:27 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23954@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;if you look at the index.php you'll see that &#34;the loop&#34; is being created by the thematic_indexloop() function/hook.  then if you go digging around in the extensions folder (the meat and potatoes) you'll find this function in content-extensions.php.  turns out it is a hook, since it is defined as&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function thematic_indexloop() {
	do_action(&#38;#39;thematic_indexloop&#38;#39;);
} // end thematic_indexloop&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;later on in the same file you'll see that thematic_index_loop() is added to this hook and it is, in fact, this function that creates the loop.  &#60;/p&#62;
&#60;p&#62;keep in mind that you don't want to go hacking around in this file, but it sure helps to see what you should be doing in your own functions.php to make changes. &#60;/p&#62;
&#60;p&#62;for instance you could either copy the entire thematic_index_loop() function into your child theme and rename it childtheme_override_index_loop().  or you could take note of the thematic_abovepost() and thematic_belowpost() hooks that are in the loop and see if adding something to those might be enough.  &#60;/p&#62;
&#60;p&#62;if you need help understanding how to add something take a look at this post i wrote:&#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>drewdavid on "Question about "the loop""</title>
<link>http://themeshaper.com/forums/topic/question-about-the-loop#post-23951</link>
<pubDate>Sun, 27 Nov 2011 19:57:01 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">23951@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there. I'd like to create an effect where the post title and meta has a background that comes from the left edge of the page and surrounds it, but I'm a novice with this sort of thing.&#60;/p&#62;
&#60;p&#62;I'd like to add a div around the post title and meta to accomplish this, but I'm unclear where this is found. It seems that &#34;the loop&#34; is being called, does this get created in archives.php?&#60;/p&#62;
&#60;p&#62;Thanks I would love to hear some helpful advice on achieving this effect. My other stumbling block is that the title and meta divs are inside the content div, but this background would (again) travel all the way to the edge of the page.&#60;/p&#62;
&#60;p&#62;I hope this makes sense. You can see how I'm doing so far at &#60;a href=&#34;http://24hrknight.com&#34; rel=&#34;nofollow&#34;&#62;http://24hrknight.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#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>Sabra on "Move post footer to post meta"</title>
<link>http://themeshaper.com/forums/topic/move-post-footer-to-post-meta#post-23793</link>
<pubDate>Sun, 13 Nov 2011 13:13:08 +0000</pubDate>
<dc:creator>Sabra</dc:creator>
<guid isPermaLink="false">23793@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi guys, I can't figure this out and the available topics don't work for me.&#60;/p&#62;
&#60;p&#62;I'm trying to move the post footer (category, comments etc.) inside the entry-meta div. I'm a php noob, so I'm sorry if this sounds really simple to some of you. :)&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Sabra
&#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>RedStarWeb on "Adding Gravar to Posts"</title>
<link>http://themeshaper.com/forums/topic/adding-gravar-to-posts#post-22662</link>
<pubDate>Fri, 12 Aug 2011 19:22:37 +0000</pubDate>
<dc:creator>RedStarWeb</dc:creator>
<guid isPermaLink="false">22662@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Very helpful! Now I just need to find the best way to style it. Wrapping the avatar in a div seems to work, but it seems like there's probably a better way of doing it.&#60;/p&#62;
&#60;p&#62;Current output:&#60;/p&#62;
&#60;p&#62;// Add Author Gravatar to Posts&#60;/p&#62;
&#60;p&#62;function author_gravatar($postmeta) {&#60;br /&#62;
	$author_avatar = '&#38;lt;div class=&#34;author-avatar&#34;&#38;gt;'; // Trying to format the image by containing it in a div. Not sure if thats the right move.&#60;br /&#62;
	$author_avatar .= get_avatar( get_the_author_email(), '80' );&#60;br /&#62;
	$author_avatar .= '&#38;lt;/div&#38;gt;';&#60;br /&#62;
	if(!is_page() ) {&#60;br /&#62;
		$postmeta .= $author_avatar;&#60;br /&#62;
		}&#60;br /&#62;
	return $postmeta;&#60;/p&#62;
&#60;p&#62;	add_filter('thematic_postheader', 'author_gravatar');&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;add_filter('thematic_postheader', 'author_gravatar');
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Gravar to Posts"</title>
<link>http://themeshaper.com/forums/topic/adding-gravar-to-posts#post-22661</link>
<pubDate>Fri, 12 Aug 2011 19:13:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22661@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;glad that helped.  &#60;/p&#62;
&#60;p&#62;to not display on pages simply wrap the insides w/ a conditional tag&#60;/p&#62;
&#60;p&#62;is_page() test for whether it is a page or not&#60;br /&#62;
! makes it negative.... so NOT a page. &#60;/p&#62;
&#60;p&#62;codex.wordpress.org/Conditional_Tags&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bacon(){
  if(!is_page(){
    echo &#38;quot;sooo not a page. let&#38;#39;s have bacon&#38;quot;;
  }
}
add_action(&#38;#39;thematic_before&#38;#39;,&#38;#39;bacon&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>RedStarWeb on "Adding Gravar to Posts"</title>
<link>http://themeshaper.com/forums/topic/adding-gravar-to-posts#post-22659</link>
<pubDate>Fri, 12 Aug 2011 18:21:36 +0000</pubDate>
<dc:creator>RedStarWeb</dc:creator>
<guid isPermaLink="false">22659@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Okay, I've got it displaying now. I still need to fiddle with styling, and figure out how to keep it from displaying on pages, but if anyone's interested here's what I did:&#60;/p&#62;
&#60;p&#62;// Add Author Gravatar&#60;/p&#62;
&#60;p&#62;function author_gravatar($postmeta) {&#60;br /&#62;
	$author_avatar = get_avatar( get_the_author_email(), '80' );&#60;br /&#62;
	$postmeta .= $author_avatar;&#60;br /&#62;
	return $postmeta;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;add_filter('thematic_postheader', 'author_gravatar');
&#60;/p&#62;</description>
</item>
<item>
<title>RedStarWeb on "Adding Gravar to Posts"</title>
<link>http://themeshaper.com/forums/topic/adding-gravar-to-posts#post-22657</link>
<pubDate>Fri, 12 Aug 2011 17:11:41 +0000</pubDate>
<dc:creator>RedStarWeb</dc:creator>
<guid isPermaLink="false">22657@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Fantastic resouce, Helga. I think I'm on the right track, but I'm missing something. Here's what I've got right now:&#60;/p&#62;
&#60;p&#62;// Add Author Gravatar to Posts&#60;/p&#62;
&#60;p&#62;function author_gravatar() {&#60;br /&#62;
    return '$postmeta' . 'echo get_avatar($author_email, '80')';&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_postheader' . 'author_gravatar');
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Gravar to Posts"</title>
<link>http://themeshaper.com/forums/topic/adding-gravar-to-posts#post-22656</link>
<pubDate>Fri, 12 Aug 2011 16:20:21 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22656@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;try reading the primer i just wrote for someone else on how to add things to hooks and how to filter things&#60;/p&#62;
&#60;p&#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>RedStarWeb on "Adding Gravar to Posts"</title>
<link>http://themeshaper.com/forums/topic/adding-gravar-to-posts#post-22654</link>
<pubDate>Fri, 12 Aug 2011 14:52:20 +0000</pubDate>
<dc:creator>RedStarWeb</dc:creator>
<guid isPermaLink="false">22654@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I would like to add author gravatar to all my posts, but I'm having a hard time finding a way to do this. I assume I need to filter the post meta data, but I'm not sure where to start.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22219</link>
<pubDate>Fri, 08 Jul 2011 03:58:20 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22219@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;don't forget to mark as resolved
&#60;/p&#62;</description>
</item>
<item>
<title>Tom Kroscavage on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22218</link>
<pubDate>Fri, 08 Jul 2011 03:33:21 +0000</pubDate>
<dc:creator>Tom Kroscavage</dc:creator>
<guid isPermaLink="false">22218@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22215</link>
<pubDate>Fri, 08 Jul 2011 02:31:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22215@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i think this should remove the thematic description&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//Remove Thematic Meta Description
function remove_description($display) {
$display = FALSE;
return $display;
}
add_filter(&#38;#39;thematic_show_description&#38;#39;, &#38;#39;remove_description&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Tom Kroscavage on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22214</link>
<pubDate>Thu, 07 Jul 2011 22:14:39 +0000</pubDate>
<dc:creator>Tom Kroscavage</dc:creator>
<guid isPermaLink="false">22214@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have two meta descriptions in all my post headers the first meta description is the same as my excerpt.  I would like to remove this one.  the second is generated by the Yoast WordPress SEO plugin.&#60;/p&#62;
&#60;p&#62;Here is a post from my site:&#60;br /&#62;
&#60;a href=&#34;http://norman-okc.com/weld/lincoln-ln-25-feedrolls/&#34; rel=&#34;nofollow&#34;&#62;http://norman-okc.com/weld/lincoln-ln-25-feedrolls/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>candregg on "Add post_meta custom field data only when fields are true"</title>
<link>http://themeshaper.com/forums/topic/add-post_meta-custom-field-data-only-when-fields-are-true#post-22098</link>
<pubDate>Thu, 30 Jun 2011 16:34:23 +0000</pubDate>
<dc:creator>candregg</dc:creator>
<guid isPermaLink="false">22098@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;For the most part, that worked like a charm: &#60;a href=&#34;http://seacliffmm.com/prod/centurion/clients-testimonials/build-a-bear-workshop/.&#34; rel=&#34;nofollow&#34;&#62;http://seacliffmm.com/prod/centurion/clients-testimonials/build-a-bear-workshop/.&#60;/a&#62;  One remaining issue is that the &#38;#38;sponsorlink call is generating an extra character string, %3e, that is messing up the actual sponsor's links.  Any idea where that's coming from?&#60;/p&#62;
&#60;p&#62;Other than that, it's beautiful.  I knew some kind of conditional test was the answer; I just kept messing up the syntax for so many hours that I got frustrated.  Thanks for demonstrating it so clearly.&#60;/p&#62;
&#60;p&#62;Yes, I've seen the function childtheme_override_category_loop() in the newer version of thematic, but have not (until now) had occasion to use it.&#60;/p&#62;
&#60;p&#62;Will file your magic and tips for future use.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Add post_meta custom field data only when fields are true"</title>
<link>http://themeshaper.com/forums/topic/add-post_meta-custom-field-data-only-when-fields-are-true#post-22086</link>
<pubDate>Wed, 29 Jun 2011 21:26:53 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22086@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#34;if I apply it globally&#34;&#60;/p&#62;
&#60;p&#62;does that mean you tried filtering the_content()?&#60;/p&#62;
&#60;p&#62;which is what i'd do and just add in a condition to test if $sponsortext exists&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function add_after_content($content) {

  global $post;
  $sponsortext = get_post_meta($post-&#38;gt;ID , &#38;#39;sponsor&#38;#39;, true);
  $sponsorlink = get_post_meta($post-&#38;gt;ID , &#38;#39;sponsorlink&#38;#39;, true);

  if($sponsortext &#38;#38;&#38;#38; $sponsorlink){
    $sponsor = &#38;#39;&#38;lt;div id=&#38;quot;sponsor&#38;quot;&#38;gt;&#38;#39;;
    $sponsor .= &#38;#39;&#38;lt;p&#38;gt;&#38;#39;. $sponsortext.&#38;#39;&#38;lt;/p&#38;gt;&#38;#39;;
    $sponsor .= &#38;#39;&#38;lt;p&#38;gt;For more information visit the website, &#38;lt;a href=&#38;quot;http://&#38;#39;.$sponsorlink.&#38;#39;&#38;gt;&#38;quot; target=&#38;quot;_blank&#38;quot;&#38;gt;http://&#38;#39;.$sponsorlink.&#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/p&#38;gt;&#38;#39;;
    $sponsor .= &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;

    $content .= $sponsor ;
  }
  return $content;
}
add_filter(&#38;#39;the_content&#38;#39;, add_after_content);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;totally untested, you might need to escape the backslashes... i'm not sure, but i think the concept is right.  &#60;/p&#62;
&#60;p&#62;ps- you can now use &#60;/p&#62;
&#60;p&#62;function childtheme_override_category_loop() &#60;/p&#62;
&#60;p&#62;and you don't need to add or remove any actions.  it's magic.
&#60;/p&#62;</description>
</item>
<item>
<title>candregg on "Add post_meta custom field data only when fields are true"</title>
<link>http://themeshaper.com/forums/topic/add-post_meta-custom-field-data-only-when-fields-are-true#post-22084</link>
<pubDate>Wed, 29 Jun 2011 20:58:55 +0000</pubDate>
<dc:creator>candregg</dc:creator>
<guid isPermaLink="false">22084@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm a relative noob trying to filter post content selectively.  &#60;/p&#62;
&#60;p&#62;In my installation, only posts in one category include the custom fields &#34;sponsor text&#34; and &#34;sponsor link&#34;.&#60;/p&#62;
&#60;p&#62;If I create a custom category loop by category, the custom fields do not show up in single posts; if I apply it globally, then the special div to hold the meta data appears on ALL posts, even where the custom field data doesn't exist.&#60;/p&#62;
&#60;p&#62;Here is the global function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//  Custom Category Loop 

function remove_category_loop(){ //  first remove the thematic action
    remove_action(&#38;#39;thematic_categoryloop&#38;#39;, &#38;#39;thematic_category_loop&#38;#39;);
    remove_action(&#38;#39;thematic_archiveloop&#38;#39;, &#38;#39;thematic_archive_loop&#38;#39;);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_category_loop&#38;#39;);

function child_category_loop() { // now rebuild your version of the action

 while (have_posts()) : the_post();

	 global $post;
     $sponsortext = get_post_meta($post-&#38;gt;ID , &#38;#39;sponsor&#38;#39;, true);
	 $sponsorlink = get_post_meta($post-&#38;gt;ID , &#38;#39;sponsorlink&#38;#39;, true);
	 ?&#38;gt;

        &#38;lt;div id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php thematic_post_class(); ?&#38;gt;&#38;quot;&#38;gt;
           &#38;lt;?php thematic_postheader(); ?&#38;gt;
           &#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
             &#38;lt;?php thematic_content(); ?&#38;gt;
             &#38;lt;div id=&#38;quot;sponsor&#38;quot;&#38;gt;
	&#38;lt;p&#38;gt;&#38;lt;?php echo $sponsortext; ?&#38;gt;&#38;lt;/p&#38;gt;
    &#38;lt;p&#38;gt;For more information visit the website, &#38;lt;a href=&#38;quot;http://&#38;lt;?php echo $sponsorlink; ?&#38;gt;&#38;quot; target=&#38;quot;_blank&#38;quot;&#38;gt;http://&#38;lt;?php echo $sponsorlink; ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/p&#38;gt;
    &#38;lt;/div&#38;gt;
           &#38;lt;/div&#38;gt;
           &#38;lt;?php thematic_postfooter(); ?&#38;gt;
        &#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;

     &#38;lt;?php endwhile;
}

add_action(&#38;#39;thematic_categoryloop&#38;#39;, &#38;#39;child_category_loop&#38;#39;);
add_action(&#38;#39;thematic_archiveloop&#38;#39;, &#38;#39;child_category_loop&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This code works great for the one category page, &#60;a href=&#34;http://seacliffmm.com/prod/centurion/category/clients-testimonials/,&#34; rel=&#34;nofollow&#34;&#62;http://seacliffmm.com/prod/centurion/category/clients-testimonials/,&#60;/a&#62;&#60;br /&#62;
But not for the general blog category page, &#60;a href=&#34;http://seacliffmm.com/prod/centurion/category/news/&#34; rel=&#34;nofollow&#34;&#62;http://seacliffmm.com/prod/centurion/category/news/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;I'm sure the answer is an if-else construction,but so far I haven't been able to code one that works.  &#60;/p&#62;
&#60;p&#62;Please advise, if possible.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Removing specific parts of the post-meta"</title>
<link>http://themeshaper.com/forums/topic/removing-specific-parts-of-the-post-meta#post-21995</link>
<pubDate>Wed, 22 Jun 2011 20:19:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21995@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you can read through the extensions folder and see where they exist.  pretty much they'll be wrapped in a function that looks like&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (function_exists(&#38;#39;childtheme_override_special_function&#38;#39;))  {
	function thematic_special_function() {
		childtheme_override_special_function();
	}
} else {
	function thematic_special_function() {
               echo &#38;quot;bacon!&#38;quot;;
	}
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>maren.m on "Removing specific parts of the post-meta"</title>
<link>http://themeshaper.com/forums/topic/removing-specific-parts-of-the-post-meta#post-21994</link>
<pubDate>Wed, 22 Jun 2011 19:20:56 +0000</pubDate>
<dc:creator>maren.m</dc:creator>
<guid isPermaLink="false">21994@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks!! Very helpful.&#60;br /&#62;
Where can I learn more about these built-in overrides?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Removing specific parts of the post-meta"</title>
<link>http://themeshaper.com/forums/topic/removing-specific-parts-of-the-post-meta#post-21919</link>
<pubDate>Fri, 17 Jun 2011 14:43:52 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21919@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;the actions are mostly in the extensions folder, the ones you are looking for are shown in content-extensions.php&#60;/p&#62;
&#60;p&#62;you can also use the built-in overrides for most of those.... so to override the post-meta&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_override_postheader_postmeta(){
  return &#38;#39;i just wrote bacon in place of the postmeta&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;THEMATIC_COMPATIBLE_POST_CLASS is like the dynamic body classes but for individual posts.  if you enable it (define it as true i think) and then look at your site's source code you will see&#60;/p&#62;
&#60;p&#62;&#38;lt;div id=&#34;post-09&#34; class=&#34;category and a bunch of other possible post classes that I am not uber familiar with&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;i've taken advantage of the body classes, but while i usually enable the post classes i've almost never used them
&#60;/p&#62;</description>
</item>
<item>
<title>vicky515 on "Removing specific parts of the post-meta"</title>
<link>http://themeshaper.com/forums/topic/removing-specific-parts-of-the-post-meta#post-21914</link>
<pubDate>Fri, 17 Jun 2011 03:31:47 +0000</pubDate>
<dc:creator>vicky515</dc:creator>
<guid isPermaLink="false">21914@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/minimalism-hiding-metadata#post-6846&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/minimalism-hiding-metadata#post-6846&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you want to remove it completely, there's probably a remove_action or remove_filter you can use, but I don't know it :\&#60;/p&#62;
&#60;p&#62;And regarding THEMATIC_COMPATIBLE_POST_CLASS - I'd love to know that myself &#38;gt;_&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>maren.m on "Removing specific parts of the post-meta"</title>
<link>http://themeshaper.com/forums/topic/removing-specific-parts-of-the-post-meta#post-21903</link>
<pubDate>Thu, 16 Jun 2011 20:25:36 +0000</pubDate>
<dc:creator>maren.m</dc:creator>
<guid isPermaLink="false">21903@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;So I'm trying to remove meta data from posts--author, category, date, etc. on both the index and single pages. I get the basic concept of removing stuff using actions, but I'm still kind of confused about how to go about FINDING the right action to remove. I've dug around in the thematic code a little bit but can't find the specifics I'm looking for. &#60;/p&#62;
&#60;p&#62;Also...can anyone tell me what THEMATIC_COMPATIBLE_POST_CLASS is? Just curious. &#60;/p&#62;
&#60;p&#62;Thanks!!
&#60;/p&#62;</description>
</item>
<item>
<title>revolve on "Trying to get entry-meta function to show up in post"</title>
<link>http://themeshaper.com/forums/topic/trying-to-get-entry-meta-function-to-show-up-in-post#post-19344</link>
<pubDate>Thu, 24 Feb 2011 04:57:44 +0000</pubDate>
<dc:creator>revolve</dc:creator>
<guid isPermaLink="false">19344@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, I'm trying to find the proper function to get my entry meta to show up. So far I've been able to get my excerpt, the_post_thumbnail and entry-title, but have a hard time finding the proper function for the rest. Can you help? &#60;/p&#62;
&#60;p&#62;I'm totally new to PHP so forgive me if I'm missing any relevant information. &#60;/p&#62;
&#60;p&#62;Thanks, code below&#60;/p&#62;
&#60;p&#62;	&#38;lt;div id=&#34;container&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;?php thematic_abovecontent(); ?&#38;gt;&#60;br /&#62;
			&#38;lt;div id=&#34;content&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;	            &#38;lt;?php&#60;/p&#62;
&#60;p&#62;	            // displays the page title&#60;br /&#62;
	            thematic_page_title();&#60;/p&#62;
&#60;p&#62;	            // create the navigation above the content&#60;br /&#62;
	            thematic_navigation_above();&#60;/p&#62;
&#60;p&#62;	           	// action hook for placing content above the index loop&#60;br /&#62;
            	thematic_above_indexloop();&#60;/p&#62;
&#60;p&#62;            	// action hook creating the index loop&#60;br /&#62;
            	//thematic_indexloop();&#60;br /&#62;
            	query_posts('&#38;#38;cat=3');&#60;br /&#62;
            	if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&#38;gt;&#60;br /&#62;
            	 &#38;lt;div class=&#34;post&#34;&#38;gt;&#60;br /&#62;
            	 &#38;lt;h2 class=&#34;entry-title&#34;&#38;gt;&#60;a&#62; &#34;rel=&#34;bookmark&#34; title=&#34;Permanent Link to 				&#38;lt;?php the_title_attribute(); ?&#38;gt;&#34;&#38;gt; &#38;lt;?php the_title();?&#38;gt;&#60;/a&#62;&#38;lt;/h2&#38;gt;&#60;/p&#62;
&#60;p&#62;            	 &#38;lt;div class=&#34;entry-content&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;            	 &#38;lt;div class=&#34;wp-post-image&#34;&#38;gt;&#60;br /&#62;
				&#38;lt;?php the_post_thumbnail(); ?&#38;gt;&#60;br /&#62;
				&#38;lt;/div&#38;gt;&#60;br /&#62;
   				&#38;lt;?php the_excerpt(); ?&#38;gt;&#60;br /&#62;
 				&#38;lt;/div&#38;gt;&#60;br /&#62;
 				&#38;lt;div class=&#34;entry-meta&#34;&#38;gt;&#60;br /&#62;
				&#38;lt;?php add_meta_box(); ?&#38;gt;&#60;br /&#62;
				&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;            	&#38;lt;?php endwhile; else: ?&#38;gt;&#60;br /&#62;
				&#38;lt;p&#38;gt;&#38;lt;?php _e('Sorry, no posts matched your criteria.'); ?&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
				&#38;lt;?php endif; &#60;/p&#62;
&#60;p&#62;            	// action hook for placing content below the index loop&#60;br /&#62;
            	thematic_below_indexloop();		&#60;/p&#62;
&#60;p&#62;	            // create the navigation below the content&#60;br /&#62;
	            thematic_navigation_below();&#60;/p&#62;
&#60;p&#62;	            ?&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;/div&#38;gt;&#38;lt;!-- #content --&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;?php thematic_belowcontent(); ?&#38;gt; &#60;/p&#62;
&#60;p&#62;		&#38;lt;/div&#38;gt;&#38;lt;!-- #container --&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>mirko77 on "Custom taxonomies are not saved when 'hierarchical' =&#62; false"</title>
<link>http://themeshaper.com/forums/topic/custom-taxonomies-are-not-saved-when-hierarchical-gt-false#post-18535</link>
<pubDate>Thu, 20 Jan 2011 15:48:05 +0000</pubDate>
<dc:creator>mirko77</dc:creator>
<guid isPermaLink="false">18535@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I figured it out.&#60;br /&#62;
The &#34;Choose from most used tags&#34; does not display a list of tags, but only the most used or those which has been used at least once.&#60;/p&#62;
&#60;p&#62;Is there a way to override this behaviour from functions.php?? &#60;/p&#62;
&#60;p&#62;Otherwise is there a way to remove the &#34;parenting&#34; feature if I use a custom category (with &#60;code&#62;hierarchical =&#38;gt; true;&#60;/code&#62;) instead of tags?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
</item>
<item>
<title>mirko77 on "Custom taxonomies are not saved when 'hierarchical' =&#62; false"</title>
<link>http://themeshaper.com/forums/topic/custom-taxonomies-are-not-saved-when-hierarchical-gt-false#post-18527</link>
<pubDate>Thu, 20 Jan 2011 13:25:14 +0000</pubDate>
<dc:creator>mirko77</dc:creator>
<guid isPermaLink="false">18527@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I created a custom post type called &#34;Images&#34; and a custom taxonomy &#34;Galleries&#34; to group these image entries together.&#60;/p&#62;
&#60;p&#62;I do not want &#34;Galleries&#34; to be hierarchical but I just need tags therefore 'hierarchical' =&#38;gt; false&#60;br /&#62;
If I add the galleries via the main page they are saved and shown properly.&#60;br /&#62;
The problem is when I add a new post &#34;Image&#34; and I want to pick up an existing gallery in my meta box, no tags are shown and I get the &#34;no tags&#34; message.&#60;/p&#62;
&#60;p&#62;If I add my galleries (tags) using the meta box they are actually saved and shown correctly. It is only adding the tags through the main page which does not work. It works if I set 'hierarchical' =&#38;gt; true but I do not need categories, I just need tags.&#60;/p&#62;
&#60;p&#62;Any suggestion?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
</item>
<item>
<title>amoore on "Posts inside the Pages and subpages"</title>
<link>http://themeshaper.com/forums/topic/posts-inside-the-pages-and-subpages/page/2#post-18375</link>
<pubDate>Fri, 14 Jan 2011 18:24:00 +0000</pubDate>
<dc:creator>amoore</dc:creator>
<guid isPermaLink="false">18375@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for this great (even when dated) thread! &#60;/p&#62;
&#60;p&#62;Did Saski's question get answered somewhere? I've got the rest working but would also love this answer:&#60;/p&#62;
&#60;p&#62;&#34;I am tryng to insert the page content before the category loop, to use that as introduction or a customizable intro area Can you give me a clue on how to edit it to display the page content above the category loop?&#34;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
