<?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: Arranging "title" then "excerpt" then "thumb" ??</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 07:11:52 +0000</pubDate>

<item>
<title>natevolk on "Arranging "title" then "excerpt" then "thumb" ??"</title>
<link>http://themeshaper.com/forums/topic/arranging-title-then-excerpt-then-thumb#post-18127</link>
<pubDate>Wed, 05 Jan 2011 06:27:54 +0000</pubDate>
<dc:creator>natevolk</dc:creator>
<guid isPermaLink="false">18127@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;whew!  That makes my brain hurt :)  I have a lot to learn!  Thanks for the response, you give great answers.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Arranging "title" then "excerpt" then "thumb" ??"</title>
<link>http://themeshaper.com/forums/topic/arranging-title-then-excerpt-then-thumb#post-18125</link>
<pubDate>Wed, 05 Jan 2011 04:31:18 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">18125@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you should also be able to filter it if you are only changing the one conditional.  untested...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//modify default Thematic excerpts
function childtheme_excerpts($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(730,200) );
				$attr = apply_filters( &#38;#39;thematic_post_thumb_attr&#38;#39;, array(&#38;#39;title&#38;#39;	=&#38;gt; &#38;#39;Go 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;Go 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;;
					}

	}
	return $post;

}

add_filter(&#38;#39;thematic_post&#38;#39;, &#38;#39;childtheme_excerpts&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>natevolk on "Arranging "title" then "excerpt" then "thumb" ??"</title>
<link>http://themeshaper.com/forums/topic/arranging-title-then-excerpt-then-thumb#post-18124</link>
<pubDate>Wed, 05 Jan 2011 03:31:41 +0000</pubDate>
<dc:creator>natevolk</dc:creator>
<guid isPermaLink="false">18124@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;woo hooo!  finally figured it out.  so, I guess the loop builds the $post and all I had to do was rearrange the php to append the excerpt before it appended the thumbnail.  Code below just incase anyone needs it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// New content loop - sets thumbs to wide and cropped
function childtheme_override_content() {
		global $thematic_content_length;

		if ( strtolower($thematic_content_length) == &#38;#39;full&#38;#39; ) {
			$post = get_the_content(more_text());
			$post = apply_filters(&#38;#39;the_content&#38;#39;, $post);
			$post = str_replace(&#38;#39;]]&#38;gt;&#38;#39;, &#38;#39;]]&#38;gt;&#38;#39;, $post);
		} elseif ( 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(730,200) );
				$attr = apply_filters( &#38;#39;thematic_post_thumb_attr&#38;#39;, array(&#38;#39;title&#38;#39;	=&#38;gt; &#38;#39;Go 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;Go 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;;
					}
			}
		} elseif ( strtolower($thematic_content_length) == &#38;#39;none&#38;#39;) {
		} else {
			$post = get_the_content(more_text());
			$post = apply_filters(&#38;#39;the_content&#38;#39;, $post);
			$post = str_replace(&#38;#39;]]&#38;gt;&#38;#39;, &#38;#39;]]&#38;gt;&#38;#39;, $post);
		}
		echo apply_filters(&#38;#39;thematic_post&#38;#39;, $post);
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>natevolk on "Arranging "title" then "excerpt" then "thumb" ??"</title>
<link>http://themeshaper.com/forums/topic/arranging-title-then-excerpt-then-thumb#post-18099</link>
<pubDate>Tue, 04 Jan 2011 03:04:56 +0000</pubDate>
<dc:creator>natevolk</dc:creator>
<guid isPermaLink="false">18099@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;here's a better link: &#60;a href=&#34;http://beta.alohastatemedia.com/category/photography&#34; rel=&#34;nofollow&#34;&#62;http://beta.alohastatemedia.com/category/photography&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>natevolk on "Arranging "title" then "excerpt" then "thumb" ??"</title>
<link>http://themeshaper.com/forums/topic/arranging-title-then-excerpt-then-thumb#post-18098</link>
<pubDate>Tue, 04 Jan 2011 03:03:04 +0000</pubDate>
<dc:creator>natevolk</dc:creator>
<guid isPermaLink="false">18098@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Allright, go easy on me, I'm very new to all of this...  :)&#60;br /&#62;
I would like to arrange most of my pages (except home and single) to show the post title, then the excerpt, then a thumbnail.  Is there a way to do this?  I've been learning a lot about hooks and filters, and I almost have my head wrapped around it, I think...  But I keep getting title, thumb, then excerpt...  Any help is appreciated!  The site I'm working on is here: &#60;a href=&#34;http://www.beta.alohastatemedia.com&#34; rel=&#34;nofollow&#34;&#62;www.beta.alohastatemedia.com&#60;/a&#62;&#60;br /&#62;
Thanks again everyone!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
