<?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: featured image</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 22 May 2013 07:05:43 +0000</pubDate>

<item>
<title>helgatheviking on "Customising Featured Images in Thematic"</title>
<link>http://themeshaper.com/forums/topic/customising-featured-images-in-thematic#post-26742</link>
<pubDate>Tue, 01 May 2012 23:59:17 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26742@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;since space36 didn't respond 8 months ago i am going to go out on a limb and say he/she isn't going to reply.  but if you can be very specific about what you are trying to do i will try to give you a hand.  a good formula for getting help goes like this:&#60;/p&#62;
&#60;p&#62;1. what are you trying to do? (descriptions, pictures, links) anything that will make it crystal clear what you want&#60;br /&#62;
2. what have you tried in order to accomplish this? (we're hear to help you learn thematic, not do it for you... unless you want to hire any of us)&#60;br /&#62;
3. what results are you getting from what you are trying?&#60;br /&#62;
4. how is this different from what you are expecting?&#60;/p&#62;
&#60;p&#62;cheers.
&#60;/p&#62;</description>
</item>
<item>
<title>webmakerholly on "Customising Featured Images in Thematic"</title>
<link>http://themeshaper.com/forums/topic/customising-featured-images-in-thematic#post-26737</link>
<pubDate>Tue, 01 May 2012 21:27:18 +0000</pubDate>
<dc:creator>webmakerholly</dc:creator>
<guid isPermaLink="false">26737@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Space36, did you figure this out? I'm trying to do the same thing and not having much luck. Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "Featured Image: Setting a Default Image"</title>
<link>http://themeshaper.com/forums/topic/featured-image-setting-a-default-image#post-26181</link>
<pubDate>Thu, 05 Apr 2012 23:20:03 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">26181@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Worked just needed css on img &#34;attachment-100x100 wp-post-image&#34;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Default Feature Image
function kia_post($post) {
	global $thematic_content_length;

	if ( strtolower($thematic_content_length) == &#38;#39;excerpt&#38;#39;) {
			$post = &#38;#39;&#38;#39;;
			$post .= get_the_excerpt();
			$post = apply_filters(&#38;#39;the_excerpt&#38;#39;,$post);
			if ( apply_filters( &#38;#39;thematic_post_thumbs&#38;#39;, TRUE) ) {
				$post_title = get_the_title();
				$size = apply_filters( &#38;#39;thematic_post_thumb_size&#38;#39; , array(100,100) );
				$attr = apply_filters( &#38;#39;thematic_post_thumb_attr&#38;#39;, array(&#38;#39;title&#38;#39;	=&#38;gt; &#38;#39;Permalink to &#38;#39; . $post_title) );
				if ( has_post_thumbnail() ) {
					$post = &#38;#39;&#38;lt;a class=&#38;quot;entry-thumb&#38;quot; href=&#38;quot;&#38;#39; . get_permalink() . &#38;#39;&#38;quot; title=&#38;quot;Permalink to &#38;#39; . get_the_title() . &#38;#39;&#38;quot; &#38;gt;&#38;#39; . get_the_post_thumbnail(get_the_ID(), $size, $attr) . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39; . $post;
				} else {
					$post = &#38;#39;&#38;lt;a class=&#38;quot;entry-thumb&#38;quot; href=&#38;quot;&#38;#39; . get_permalink() . &#38;#39;&#38;quot; title=&#38;quot;Permalink to &#38;#39; . get_the_title() . &#38;#39;&#38;quot; &#38;gt;&#38;lt;img class=&#38;quot;attachment-100x100 wp-post-image&#38;quot; src=&#38;quot;&#38;#39; . get_stylesheet_directory_uri(). &#38;#39;/images/featured-image.png&#38;quot;/&#38;gt;&#38;lt;/a&#38;gt;&#38;#39; . $post;
				}
			}
		}
		return $post;
}
add_filter(&#38;#39;thematic_post&#38;#39;,&#38;#39;kia_post&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "Featured Image: Setting a Default Image"</title>
<link>http://themeshaper.com/forums/topic/featured-image-setting-a-default-image#post-26164</link>
<pubDate>Wed, 04 Apr 2012 20:13:30 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26164@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;if that worked, please mark as resolved
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "Featured Image: Setting a Default Image"</title>
<link>http://themeshaper.com/forums/topic/featured-image-setting-a-default-image#post-26163</link>
<pubDate>Wed, 04 Apr 2012 19:06:18 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">26163@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sweet I'll test this afternoon.&#60;/p&#62;
&#60;p&#62;Thanks htv!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Featured Image: Setting a Default Image"</title>
<link>http://themeshaper.com/forums/topic/featured-image-setting-a-default-image#post-26152</link>
<pubDate>Wed, 04 Apr 2012 04:19:19 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26152@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you'd need to filter thematic_post&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function kia_post($post) {
	global $thematic_content_length;

	if ( strtolower($thematic_content_length) == &#38;#39;excerpt&#38;#39;) {
			$post = &#38;#39;&#38;#39;;
			$post .= get_the_excerpt();
			$post = apply_filters(&#38;#39;the_excerpt&#38;#39;,$post);
			if ( apply_filters( &#38;#39;thematic_post_thumbs&#38;#39;, TRUE) ) {
				$post_title = get_the_title();
				$size = apply_filters( &#38;#39;thematic_post_thumb_size&#38;#39; , array(100,100) );
				$attr = apply_filters( &#38;#39;thematic_post_thumb_attr&#38;#39;, array(&#38;#39;title&#38;#39;	=&#38;gt; &#38;#39;Permalink to &#38;#39; . $post_title) );
				if ( has_post_thumbnail() ) {
					$post = &#38;#39;&#38;lt;a class=&#38;quot;entry-thumb&#38;quot; href=&#38;quot;&#38;#39; . get_permalink() . &#38;#39;&#38;quot; title=&#38;quot;Permalink to &#38;#39; . get_the_title() . &#38;#39;&#38;quot; &#38;gt;&#38;#39; . get_the_post_thumbnail(get_the_ID(), $size, $attr) . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39; . $post;
				} else {
					$post = &#38;#39;&#38;lt;a class=&#38;quot;entry-thumb&#38;quot; href=&#38;quot;&#38;#39; . get_permalink() . &#38;#39;&#38;quot; title=&#38;quot;Permalink to &#38;#39; . get_the_title() . &#38;#39;&#38;quot; &#38;gt;&#38;lt;img src=&#38;quot;&#38;#39; . get_stylesheet_directory_uri(). &#38;#39;/images/default-thumbnail.png&#38;quot;/&#38;gt;&#38;lt;/a&#38;gt;&#38;#39; . $post;
				}
			}
		}
		return $post;
}
add_filter(&#38;#39;thematic_post&#38;#39;,&#38;#39;kia_post&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;untested, so beware of typos
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "Featured Image: Setting a Default Image"</title>
<link>http://themeshaper.com/forums/topic/featured-image-setting-a-default-image#post-26149</link>
<pubDate>Tue, 03 Apr 2012 22:35:11 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">26149@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm just curious if anyone has code for setting a default featured image if a user does not specify one?&#60;/p&#62;
&#60;p&#62;I have a contributor based website and they do not always set a featured image. I'd like to set a default image to dummy proof the problem.&#60;/p&#62;
&#60;p&#62;If anyone has Thematic compatible code to do this I would much appreciate it.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24944</link>
<pubDate>Wed, 18 Jan 2012 00:33:10 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24944@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the first parameter is post ID.  you'll need to find the ID of the parent and use that in get_the_post_thumbnail.  &#60;/p&#62;
&#60;p&#62;maybe something like :&#60;br /&#62;
&#60;a href=&#34;http://www.webcitizenmag.com/2010/05/20/how-to-get-top-parent-page-id-in-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://www.webcitizenmag.com/2010/05/20/how-to-get-top-parent-page-id-in-wordpress/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Bennyboy on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24943</link>
<pubDate>Wed, 18 Jan 2012 00:15:26 +0000</pubDate>
<dc:creator>Bennyboy</dc:creator>
<guid isPermaLink="false">24943@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Helga - that code was exactly what I needed, thanks for posting!&#60;/p&#62;
&#60;p&#62;I have a question related to it - if I wanted child pages of a parent page to display the parent page featured image, what would I use? I assuming it's using 'get_the_post_thumbnail', but I can't get it to pull the parent image.&#60;/p&#62;
&#60;p&#62;Any clues?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24666</link>
<pubDate>Thu, 05 Jan 2012 16:23:39 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24666@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i get what i asked for.  but 'round here we don't advise hacking the thematic core files.  and i don't really even advocate creating a child header.php unless you are doing something really whacky.  &#60;/p&#62;
&#60;p&#62;you can do what you're trying easily from your child's functions.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function kia_add_thumbnail(){
    if ( ! is_front_page() ) {?&#38;gt;
        &#38;lt;div class=&#38;quot;header-image&#38;quot;&#38;gt;&#38;lt;?php the_post_thumbnail( &#38;#39;full&#38;#39; ); ?&#38;gt;&#38;lt;/div&#38;gt;
    &#38;lt;?php }?&#38;gt;
}
add_action(&#38;#39;thematic_belowheader&#38;#39;,&#38;#39;kia_add_thumbnail&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you will need to add another condition so it only will appear on pages and not on blog posts or archives
&#60;/p&#62;</description>
</item>
<item>
<title>aaronrelph on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24665</link>
<pubDate>Thu, 05 Jan 2012 15:59:37 +0000</pubDate>
<dc:creator>aaronrelph</dc:creator>
<guid isPermaLink="false">24665@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I added this code to header.php just above the &#38;lt;main&#38;gt; element. I used a conditional tag so it doesn't show on the front page. All other pages will have a header image if the featured image is set. &#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( ! is_front_page() ) {?&#38;gt;&#60;br /&#62;
        &#38;lt;div class=&#34;header-image&#34;&#38;gt;&#60;br /&#62;
		&#38;lt;?php the_post_thumbnail( 'full' ); ?&#38;gt;&#60;br /&#62;
        &#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;?php }?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24663</link>
<pubDate>Thu, 05 Jan 2012 14:58:48 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24663@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@aaron, maybe you could share what you did in case someone else is trying to do the same thing.
&#60;/p&#62;</description>
</item>
<item>
<title>aaronrelph on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24652</link>
<pubDate>Thu, 05 Jan 2012 03:52:18 +0000</pubDate>
<dc:creator>aaronrelph</dc:creator>
<guid isPermaLink="false">24652@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@helgatheviking - Thanks so much!!! That's all i need - working perfect now!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24649</link>
<pubDate>Thu, 05 Jan 2012 02:59:02 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24649@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;not doing anything wrong per se, but featured images don't display on pages by default.  you can look at page.php and see that the_post_thumbnail() is nowhere to be found... nor is it hidden in something like thematic_content() b/c page.php just uses wp default the_content(). depending on where you'd like the image to appear you can add it to a hook or filter it into the the_content
&#60;/p&#62;</description>
</item>
<item>
<title>aaronrelph on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24648</link>
<pubDate>Thu, 05 Jan 2012 02:48:27 +0000</pubDate>
<dc:creator>aaronrelph</dc:creator>
<guid isPermaLink="false">24648@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is the only page I've set a featured image on so far&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.imgonnarelph.com/mha/?page_id=10&#34; rel=&#34;nofollow&#34;&#62;http://www.imgonnarelph.com/mha/?page_id=10&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I looked in the code to see why it's not displaying - not seeing any issues though.
&#60;/p&#62;</description>
</item>
<item>
<title>proto on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24644</link>
<pubDate>Wed, 04 Jan 2012 23:43:01 +0000</pubDate>
<dc:creator>proto</dc:creator>
<guid isPermaLink="false">24644@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can you post your website URL in reply if you're not developing locally, that way we can look and try and work out what's causing the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>aaronrelph on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24642</link>
<pubDate>Wed, 04 Jan 2012 22:26:10 +0000</pubDate>
<dc:creator>aaronrelph</dc:creator>
<guid isPermaLink="false">24642@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Anyone out there have an idea what I'm doing wrong?
&#60;/p&#62;</description>
</item>
<item>
<title>aaronrelph on "Featured Image on a page (not a post) not showing up"</title>
<link>http://themeshaper.com/forums/topic/featured-image-on-a-page-not-a-post-not-showing-up#post-24618</link>
<pubDate>Wed, 04 Jan 2012 04:45:23 +0000</pubDate>
<dc:creator>aaronrelph</dc:creator>
<guid isPermaLink="false">24618@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;On each of my pages I have a header image and using the 'featured image' would work perfect but when i set a featured image nothing is showing up on page. Any ideas on what I might be doing wrong?&#60;/p&#62;
&#60;p&#62;Again I am trying to set a full size featured image on a page - not a post.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Add featured image to full post?"</title>
<link>http://themeshaper.com/forums/topic/add-featured-image-to-full-post#post-23518</link>
<pubDate>Wed, 19 Oct 2011 02:59:25 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23518@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;what more control do you need?  you could always wrap it in a containing div or something&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function add_post_thumb($title) {
return &#38;#39;&#38;lt;div class=&#38;quot;featured&#38;quot;&#38;gt;&#38;#39;.get_the_post_thumbnail(NULL, &#38;#39;thumbnail&#38;#39;).&#38;#39;&#38;lt;/div&#38;gt;&#38;#39; . $title;
}
add_filter(&#38;#39;the_content&#38;#39;, &#38;#39;add_post_thumb&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>staze on "Add featured image to full post?"</title>
<link>http://themeshaper.com/forums/topic/add-featured-image-to-full-post#post-23508</link>
<pubDate>Tue, 18 Oct 2011 00:41:48 +0000</pubDate>
<dc:creator>staze</dc:creator>
<guid isPermaLink="false">23508@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Adding this:&#60;br /&#62;
&#60;code&#62;function add_post_thumb($title) {&#60;br /&#62;
	return get_the_post_thumbnail(NULL, 'thumbnail') . $title;&#60;br /&#62;
}&#60;br /&#62;
add_filter('the_content', 'add_post_thumb');&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Into functions.php made things work for the loop. But I'm not sure I like how it looks. I think I want more control, as you alluded to. So, will just stick with adding featured image, and actual post image. &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>staze on "Add featured image to full post?"</title>
<link>http://themeshaper.com/forums/topic/add-featured-image-to-full-post#post-23505</link>
<pubDate>Mon, 17 Oct 2011 17:21:23 +0000</pubDate>
<dc:creator>staze</dc:creator>
<guid isPermaLink="false">23505@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yeah, I know how to do that. but it doesn't seem like it should be necessary. The data is there, I just need to add the function to insert it. I thought someone might have done this already, but if not, I'll try to tackle it myself. &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>lastraw on "Add featured image to full post?"</title>
<link>http://themeshaper.com/forums/topic/add-featured-image-to-full-post#post-23484</link>
<pubDate>Sat, 15 Oct 2011 04:14:28 +0000</pubDate>
<dc:creator>lastraw</dc:creator>
<guid isPermaLink="false">23484@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;single posts need to insert image to post (separate from featured image)
&#60;/p&#62;</description>
</item>
<item>
<title>staze on "Add featured image to full post?"</title>
<link>http://themeshaper.com/forums/topic/add-featured-image-to-full-post#post-23476</link>
<pubDate>Fri, 14 Oct 2011 18:50:34 +0000</pubDate>
<dc:creator>staze</dc:creator>
<guid isPermaLink="false">23476@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thematic seems to add the featured image to excerpts in categories and archives just fine, but I'd like to add the featured image to single posts, and &#34;the loop&#34; full posts (like on the front page). I can't seem to find a way to do this is a &#34;kosher&#34; thematic way. But I'll fully admit, I'm not fully understanding how the thematic functions work. &#60;/p&#62;
&#60;p&#62;Thanks much!
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Featured Image Not Displaying on Blog Page"</title>
<link>http://themeshaper.com/forums/topic/featured-image-not-displaying-on-blog-page#post-23458</link>
<pubDate>Thu, 13 Oct 2011 17:20:57 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">23458@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Glad to hear it worked.&#60;/p&#62;
&#60;p&#62;If you are using version 9.7.7 that also explains why the &#60;a href=&#34;http://scottnix.com/2011/scroll-to-top-for-thematic/&#34;&#62;Scroll To Top for Thematic&#60;/a&#62; wouldn't work, I would highly recommend always using the &#60;a href=&#34;http://developing.thematic4you.com/thematic-development-release/&#34;&#62;latest development release of Thematic&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;There is an &#60;a href=&#34;http://themeshaper.com/forums/topic/is-there-a-way-to-request-a-bug-fix&#34;&#62;issue with the overrides in the footer&#60;/a&#62; of the 9.7.7 version of Thematic, not to mention a bunch of other fixes that will eventually also give you some trouble.
&#60;/p&#62;</description>
</item>
<item>
<title>ravenousravendesign on "Featured Image Not Displaying on Blog Page"</title>
<link>http://themeshaper.com/forums/topic/featured-image-not-displaying-on-blog-page#post-23457</link>
<pubDate>Thu, 13 Oct 2011 15:58:01 +0000</pubDate>
<dc:creator>ravenousravendesign</dc:creator>
<guid isPermaLink="false">23457@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;whoa, it worked! cool man. I don't understand why it works either. childtheme_content is just throwing 'excerpt' into thematic_content? &#60;/p&#62;
&#60;p&#62;Thanks man, you saved my life. I tried everything my small brain could manage. hehe ^_^&#60;/p&#62;
&#60;p&#62;I'm using version 0.9.7.7.
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Featured Image Not Displaying on Blog Page"</title>
<link>http://themeshaper.com/forums/topic/featured-image-not-displaying-on-blog-page#post-23433</link>
<pubDate>Wed, 12 Oct 2011 01:16:54 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">23433@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;If you are using the latest 9.7.8 (rev 756) version of Thematic, try.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Change default content display on home page to excerpt
function childtheme_content($content) {
if (is_home() &#124;&#124; is_front_page()) {
$content= &#38;#39;excerpt&#38;#39;;}
return $content;
}
add_filter(&#38;#39;thematic_content&#38;#39;, &#38;#39;childtheme_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I can't recall the issue with this, but at one time it drove me crazy before. I just remember having no clue why it worked.
&#60;/p&#62;</description>
</item>
<item>
<title>ravenousravendesign on "Featured Image Not Displaying on Blog Page"</title>
<link>http://themeshaper.com/forums/topic/featured-image-not-displaying-on-blog-page#post-23431</link>
<pubDate>Tue, 11 Oct 2011 23:08:21 +0000</pubDate>
<dc:creator>ravenousravendesign</dc:creator>
<guid isPermaLink="false">23431@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;As you can see, my featured images are not displaying on my blog list&#60;br /&#62;
&#60;a href=&#34;http://www.ravenousravendesign.com/ravenous-raven-design-blog/&#34; rel=&#34;nofollow&#34;&#62;http://www.ravenousravendesign.com/ravenous-raven-design-blog/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Yet, it shows just fine in each category&#60;br /&#62;
&#60;a href=&#34;http://www.ravenousravendesign.com/category/wordpress/thematic/&#34; rel=&#34;nofollow&#34;&#62;http://www.ravenousravendesign.com/category/wordpress/thematic/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How can I get the featured image to show on my blog page? I have the &#34;blog&#34; template selected for that page. Not really sure what I am doing wrong.
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23316</link>
<pubDate>Sun, 02 Oct 2011 14:43:29 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">23316@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Code above does not work,&#60;br /&#62;
I actually googled exclude category from indexloop and came to a post on here with the correct code.&#60;br /&#62;
Thanks for the help though! I always seem to find the answer on here using google.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23310</link>
<pubDate>Sun, 02 Oct 2011 02:33:11 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23310@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;unfortunately, even though you are using Thematic, it is still a &#60;em&#62;widget&#60;/em&#62; problem for removing that category from the widgets.  &#60;/p&#62;
&#60;p&#62;to remove it from it from the index loop you'd do something like&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function kia_adjust_query(){
  global $wp_query;
  $defaults = $wp_query-&#38;gt;query_vars;
  $new = array(&#38;#39;category__not_in&#38;#39; =&#38;gt; array( 6 ) ); //where 6 is the ID of the cat you&#38;#39;d like to exclude
  $args = wp_parse_args( $new, $defaults );
  query_posts($args);
}
add_action(&#38;#39;thematic_aboveindexloop&#38;#39;,&#38;#39;kia_adjust_query&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>logostar on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23304</link>
<pubDate>Sat, 01 Oct 2011 16:35:05 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">23304@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think you would have to use&#60;br /&#62;
 if ( is_home() ) {&#60;br /&#62;
something like that. &#60;/p&#62;
&#60;p&#62;As I'm trying to exclude specific categories from the blog page.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
