<?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: post</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 04 Feb 2012 03:56:40 +0000</pubDate>

<item>
<title>helgatheviking on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24799</link>
<pubDate>Tue, 10 Jan 2012 23:05:26 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24799@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;tested locally this should add the site title to the beginning of the doctitle everywhere except for the home/front pages where it already is:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_doctitle($elements) {

	$site_name = get_bloginfo(&#38;#39;name&#38;#39;);
	$separator = apply_filters(&#38;#39;thematic_doctitle_separator&#38;#39;, &#38;#39;&#124;&#38;#39;);

	// and now adding the site name if we&#38;#39;re not on home or front_page
	if (!( is_home() &#124;&#124; is_front_page() )) {
		array_unshift($elements, $site_name, $separator);
	}

	return $elements;
}
add_filter(&#38;#39;thematic_doctitle&#38;#39;, &#38;#39;childtheme_doctitle&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24796</link>
<pubDate>Tue, 10 Jan 2012 22:00:11 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24796@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I also found this post which has some different code at: &#60;a href=&#34;http://themeshaper.com/forums/topic/change-doctitle?replies=4#post-24794&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/change-doctitle?replies=4#post-24794&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;For the most part it seems to work just fine, except my home page has no separator. The blog title and the tagline run straight together...&#60;/p&#62;
&#60;p&#62;Either solution would be great to get working... Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24793</link>
<pubDate>Tue, 10 Jan 2012 21:24:46 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24793@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here are lines 19-22:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_doctitle() {
 
 // You don&#38;#39;t want to change this one.
 $site_name = get_bloginfo(&#38;#39;name&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks. :)
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24776</link>
<pubDate>Tue, 10 Jan 2012 01:31:44 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24776@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well what is line 21 and just prior?  though i see this double semi-colon right away&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$content .= &#38;#39; &#38;#39; . single_cat_title(&#38;quot;&#38;quot;, false);;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24773</link>
<pubDate>Mon, 09 Jan 2012 23:14:19 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24773@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Helga,&#60;/p&#62;
&#60;p&#62;I can't seem to figure out where the offender is! Here is my functions.php code as shown on the theme filters page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_doctitle() {

// You don&#38;#39;t want to change this one.
$site_name = get_bloginfo(&#38;#39;name&#38;#39;);
 
// But you like to have a different separator
$separator = &#38;#39;&#38;amp;raquo;&#38;#39;;
 
// We will keep the original code
if ( is_single() ) {
$content = single_post_title(&#38;#39;&#38;#39;, FALSE);
}
elseif ( is_home() &#124;&#124; is_front_page() ) {
$content = get_bloginfo(&#38;#39;description&#38;#39;);
}
elseif ( is_page() ) {
$content = single_post_title(&#38;#39;&#38;#39;, FALSE);
}
elseif ( is_search() ) {
$content = __(&#38;#39;Search Results for:&#38;#39;, &#38;#39;thematic&#38;#39;);
$content .= &#38;#39; &#38;#39; . wp_specialchars(stripslashes(get_search_query()), true);
}
elseif ( is_category() ) {
$content = __(&#38;#39;Category Archives:&#38;#39;, &#38;#39;thematic&#38;#39;);
$content .= &#38;#39; &#38;#39; . single_cat_title(&#38;quot;&#38;quot;, false);;
}
elseif ( is_tag() ) {
$content = __(&#38;#39;Tag Archives:&#38;#39;, &#38;#39;thematic&#38;#39;);
$content .= &#38;#39; &#38;#39; . thematic_tag_query();
}
elseif ( is_404() ) {
$content = __(&#38;#39;Not Found&#38;#39;, &#38;#39;thematic&#38;#39;);
}
else {
$content = get_bloginfo(&#38;#39;description&#38;#39;);
}

if (get_query_var(&#38;#39;paged&#38;#39;)) {
$content .= &#38;#39; &#38;#39; .$separator. &#38;#39; &#38;#39;;
$content .= &#38;#39;Page&#38;#39;;
$content .= &#38;#39; &#38;#39;;
$content .= get_query_var(&#38;#39;paged&#38;#39;);
}

// until we reach this point. You want to have the site_name everywhere?
// Ok .. here it is.
$my_elements = array(
&#38;#39;site_name&#38;#39; =&#38;gt; $site_name,
&#38;#39;separator&#38;#39; =&#38;gt; $separator,
&#38;#39;content&#38;#39; =&#38;gt; $content
);

// and now we&#38;#39;re reversing the array as long as we&#38;#39;re not on home or front_page
if (!( is_home() &#124;&#124; is_front_page() )) {
$my_elements = array_reverse($my_elements);
}

// And don&#38;#39;t forget to return your new creation
return $my_elements;
}

// Add the filter to the original function
add_filter(&#38;#39;thematic_doctitle&#38;#39;, &#38;#39;childtheme_doctitle&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24769</link>
<pubDate>Mon, 09 Jan 2012 20:09:27 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24769@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;syntax error means exactly that... error in your syntax.  likely missing a ) , ; ' } or something some where.  i can also mean you have some punctuation where you shouldn't but since it says unexpected string, you are probs not closing something right
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24768</link>
<pubDate>Mon, 09 Jan 2012 19:27:16 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24768@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi so I found some information on this page:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/thematic/guide/?page_id=12&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/thematic/guide/?page_id=12&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Under the heading 'thematic_doctitle()'&#60;/p&#62;
&#60;p&#62;However by using that code I got the following error.&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected T_STRING in /home/content/x/r/o/xroox/html/24hrknight/wp-content/themes/tuxedo/functions.php on line 21&#60;/p&#62;
&#60;p&#62;Thanks. :)
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24767</link>
<pubDate>Mon, 09 Jan 2012 19:20:52 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24767@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'd like the blog tagline/description to be placed in the title before or after the blog title, as well as individual post/page titles.&#60;/p&#62;
&#60;p&#62;Right now I only get the blog title on the home page, and only the page/post title.&#60;/p&#62;
&#60;p&#62;Thanks! :)&#60;/p&#62;
&#60;p&#62;Drew
&#60;/p&#62;</description>
</item>
<item>
<title>carrisi on "no image in posts"</title>
<link>http://themeshaper.com/forums/topic/no-image-in-posts#post-24068</link>
<pubDate>Fri, 02 Dec 2011 14:28:32 +0000</pubDate>
<dc:creator>carrisi</dc:creator>
<guid isPermaLink="false">24068@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;brilliat thanks for your help
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "no image in posts"</title>
<link>http://themeshaper.com/forums/topic/no-image-in-posts#post-24067</link>
<pubDate>Fri, 02 Dec 2011 14:06:17 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24067@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;if you are using a program like notepad++ (which you should, i recommend it as a kick ass text editor) then you can just search content-extensions.php for 'thematic_post'.  you'll find the filter is in the thematic_content() function.  i originally thought that the filter name was the same as the function, but this isn't the case.  the filter name is what is seen in the apply_filters().  here's the source:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function thematic_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(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;
				}
		}
	} 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);  //here&#38;#39;s your filter right here
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>carrisi on "no image in posts"</title>
<link>http://themeshaper.com/forums/topic/no-image-in-posts#post-24063</link>
<pubDate>Fri, 02 Dec 2011 12:52:51 +0000</pubDate>
<dc:creator>carrisi</dc:creator>
<guid isPermaLink="false">24063@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thanks helgatheviking, your answers have really helped. &#60;/p&#62;
&#60;p&#62;can you give me some insight on how to filter the thematic post, i know its in content extentions but cant find the relevant filter
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "no image in posts"</title>
<link>http://themeshaper.com/forums/topic/no-image-in-posts#post-24046</link>
<pubDate>Fri, 02 Dec 2011 00:05:22 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24046@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;full post versus excerpt are 2 totally different things.  by default, thematic only shows the featured image in the excerpt mode.  it doesn't automatically show up on the single post.  of course you can add it in by filtering thematic_post.
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "no image in posts"</title>
<link>http://themeshaper.com/forums/topic/no-image-in-posts#post-24044</link>
<pubDate>Thu, 01 Dec 2011 23:24:27 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">24044@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Try &#60;a href=&#34;http://themeshaper.com/forums/topic/featured-image-not-displaying-on-blog-page&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/featured-image-not-displaying-on-blog-page&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>carrisi on "no image in posts"</title>
<link>http://themeshaper.com/forums/topic/no-image-in-posts#post-24043</link>
<pubDate>Thu, 01 Dec 2011 23:14:40 +0000</pubDate>
<dc:creator>carrisi</dc:creator>
<guid isPermaLink="false">24043@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello, my site is nearly complete and looking great, cant wait to show you. Forums have been so much help.&#60;/p&#62;
&#60;p&#62;Anyway, i changed the homepage from full to excerpt, when i have then view the full post there is no featured image??? just the text content. &#60;/p&#62;
&#60;p&#62;I was hoping that the thumbnail from the excerpt would become larger on the post.
&#60;/p&#62;</description>
</item>
<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>markvd3 on "display first full post with comments and everything on frontpage?"</title>
<link>http://themeshaper.com/forums/topic/display-first-full-post-with-comments-and-everything-on-frontpage#post-23828</link>
<pubDate>Wed, 16 Nov 2011 17:29:59 +0000</pubDate>
<dc:creator>markvd3</dc:creator>
<guid isPermaLink="false">23828@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hi, i would like to display my most recent post on the front page, just as it would look as the single.php with the comments and everything.
&#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>helgatheviking on "add_filter calling origin function"</title>
<link>http://themeshaper.com/forums/topic/add_filter-calling-origin-function#post-23693</link>
<pubDate>Fri, 04 Nov 2011 01:43:47 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23693@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;bacon rules.  and makes much more delicious dummy content than lorem ipsum. don't forget to mark as resolved.
&#60;/p&#62;</description>
</item>
<item>
<title>turbobutton on "add_filter calling origin function"</title>
<link>http://themeshaper.com/forums/topic/add_filter-calling-origin-function#post-23692</link>
<pubDate>Fri, 04 Nov 2011 00:24:02 +0000</pubDate>
<dc:creator>turbobutton</dc:creator>
<guid isPermaLink="false">23692@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;btw. thanks for the bacon reference. i love bacon! little piggies are in trouble because they're so delicious.
&#60;/p&#62;</description>
</item>
<item>
<title>turbobutton on "add_filter calling origin function"</title>
<link>http://themeshaper.com/forums/topic/add_filter-calling-origin-function#post-23691</link>
<pubDate>Fri, 04 Nov 2011 00:18:26 +0000</pubDate>
<dc:creator>turbobutton</dc:creator>
<guid isPermaLink="false">23691@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;oh right. i completely forgot the diff between hooks and filters.  THANK YOU!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "add_filter calling origin function"</title>
<link>http://themeshaper.com/forums/topic/add_filter-calling-origin-function#post-23686</link>
<pubDate>Thu, 03 Nov 2011 20:42:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23686@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;filters don't HAVE to completely replace content.  it all depends on whether you set a new value for the variable you are passing or if you concatenate and just take more stuff on..&#60;/p&#62;
&#60;p&#62;see my explanation of 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;
&#60;p&#62;your example would be modified to be:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_thematic_postheader($postheader)
{
//the $postheader variable is set to something totally new, but the original is tacked on to the end with the period
$postheader = &#38;#39;&#38;lt;div class=&#38;quot;myclass&#38;quot; &#38;gt;&#38;lt;/div&#38;gt;&#38;#39; . $postheader;

// to do it the other way and tack it to the end you&#38;#39;d use a period in front of the equal sign
// $postheader .= &#38;#39;&#38;lt;div class=&#38;quot;endclass&#38;quot;&#38;gt;bacon&#38;lt;/div&#38;gt;&#38;#39;;

//with filters you must always return the variable back to the original function
return $postheader;
}

add_filter( &#38;#39;thematic_postheader&#38;#39;, &#38;#39;childtheme_thematic_postheader&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>turbobutton on "add_filter calling origin function"</title>
<link>http://themeshaper.com/forums/topic/add_filter-calling-origin-function#post-23685</link>
<pubDate>Thu, 03 Nov 2011 19:17:53 +0000</pubDate>
<dc:creator>turbobutton</dc:creator>
<guid isPermaLink="false">23685@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;alternatively, a way of adding a hook into THE_LOOP or post loop&#60;/p&#62;
&#60;p&#62;both would be good to know
&#60;/p&#62;</description>
</item>
<item>
<title>turbobutton on "add_filter calling origin function"</title>
<link>http://themeshaper.com/forums/topic/add_filter-calling-origin-function#post-23684</link>
<pubDate>Thu, 03 Nov 2011 19:15:21 +0000</pubDate>
<dc:creator>turbobutton</dc:creator>
<guid isPermaLink="false">23684@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;superb system design. great use of hooks and filters. &#60;/p&#62;
&#60;p&#62;so im looking to add (prepend or append) a div tag (or any other content ) in each post header -- but dont want to remove the original content.&#60;/p&#62;
&#60;p&#62;it seems that the filters actually replace the original function..&#60;/p&#62;
&#60;p&#62;something like the following pseudocode:&#60;/p&#62;
&#60;p&#62;function childtheme_thematic_postheader&#60;br /&#62;
{&#60;br /&#62;
//my new stuff&#60;br /&#62;
echo &#38;lt;div class='myclass' &#38;gt;&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;//then onto original content&#60;br /&#62;
call original function&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;add_filter( 'thematic_postheader', 'childtheme_thematic_postheader');
&#60;/p&#62;</description>
</item>
<item>
<title>simonafilote on "Adding images next to postfooter elements"</title>
<link>http://themeshaper.com/forums/topic/adding-images-next-to-postfooter-elements#post-23664</link>
<pubDate>Tue, 01 Nov 2011 17:40:28 +0000</pubDate>
<dc:creator>simonafilote</dc:creator>
<guid isPermaLink="false">23664@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey, you were right, I removed the dots and it worked! Thanks for helping me out :)
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding images next to postfooter elements"</title>
<link>http://themeshaper.com/forums/topic/adding-images-next-to-postfooter-elements#post-23661</link>
<pubDate>Tue, 01 Nov 2011 14:54:27 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23661@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;simona,&#60;/p&#62;
&#60;p&#62;your code looks good, but make sure that the &#60;em&#62;path&#60;/em&#62; to the file name is correct.  &#60;/p&#62;
&#60;p&#62;if you've added this code to your theme's style.css and your images are in a folder called 'images' (in the root of your theme) then your path should actually be:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;background: url(&#38;quot;images/pencil1.png&#38;quot;) no-repeat scroll 0 2px #FFFFFF;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the ../ means go UP one level from where you are (style.css) so no doubt it isn't finding the image folder.  you can see that in firebug too usually as you'll get 404/not found errors.
&#60;/p&#62;</description>
</item>
<item>
<title>simonafilote on "Adding images next to postfooter elements"</title>
<link>http://themeshaper.com/forums/topic/adding-images-next-to-postfooter-elements#post-23660</link>
<pubDate>Tue, 01 Nov 2011 14:07:26 +0000</pubDate>
<dc:creator>simonafilote</dc:creator>
<guid isPermaLink="false">23660@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Helga&#60;/p&#62;
&#60;p&#62;Many thanks for your answer. In fact I had taken a look at the example site's CSS through Firebug, and what I found is the following:&#60;/p&#62;
&#60;p&#62;To add an image besides the tag links, I guess this is the code. I added it in my style.css and that created some space right before the tag-links in the postfooter where the small image should come, but the image itself doesn't appear...what am I missing? I double checked the image name to make sure it's right.&#60;/p&#62;
&#60;p&#62;#content .entry-utility .tag-links {&#60;br /&#62;
    background: url(&#34;../images/pencil6.png&#34;) no-repeat scroll 4px 1px #FFFFFF;&#60;br /&#62;
    padding: 0 8px 0 32px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;---------&#60;br /&#62;
To add the image before the comment count, I copy/pasted this code in the style.css but there is no effect at the frontend...not even some space as in the first case.&#60;/p&#62;
&#60;p&#62;#content .entry-utility .comment-link {&#60;br /&#62;
    background: url(&#34;../images/pencil1.png&#34;) no-repeat scroll 0 2px #FFFFFF;&#60;br /&#62;
    padding: 0 11px 0 18px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;What do you think?&#60;/p&#62;
&#60;p&#62;Simona
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding images next to postfooter elements"</title>
<link>http://themeshaper.com/forums/topic/adding-images-next-to-postfooter-elements#post-23657</link>
<pubDate>Mon, 31 Oct 2011 15:28:12 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23657@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;why don't you take &#60;a href=&#34;http://getfirebug.com&#34; rel=&#34;nofollow&#34;&#62;http://getfirebug.com&#60;/a&#62; or chrome's developer tools and examine what that site is doing?  and then copy it?  it is only a little CSS background image in conjunction with some left padding.
&#60;/p&#62;</description>
</item>
<item>
<title>simonafilote on "Adding images next to postfooter elements"</title>
<link>http://themeshaper.com/forums/topic/adding-images-next-to-postfooter-elements#post-23656</link>
<pubDate>Mon, 31 Oct 2011 12:11:31 +0000</pubDate>
<dc:creator>simonafilote</dc:creator>
<guid isPermaLink="false">23656@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've just started with WP and I'm a complete dummy with CSS and PHP but yet I'm keen to customise and style the blog theme as I wish... &#60;/p&#62;
&#60;p&#62;I've been searching for days for some solution to add a small speech bubble next to the comments count displayed in the postfooter of each post. Also, I'd like to add a graphic next to the other two elements displayed in the postfooter (post category and tags), something like it's being displayed on this blog: &#60;a href=&#34;http://www.blago.net/baking/.&#34; rel=&#34;nofollow&#34;&#62;http://www.blago.net/baking/.&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My blog is crumbsofjoy.co.cc&#60;/p&#62;
&#60;p&#62;I would really appreciate your help with this.&#60;/p&#62;
&#60;p&#62;Simona
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Changing how post is being displayed"</title>
<link>http://themeshaper.com/forums/topic/changing-how-post-is-being-displayed#post-23459</link>
<pubDate>Thu, 13 Oct 2011 18:14:19 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23459@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thanks for posting your solution.  you can still use the override (versus removing and adding a function).  the difference is that before you left the loop out, so you were getting stuck w/ only 1 post.  in your working solution you have:&#60;/p&#62;
&#60;p&#62;global $post;&#60;br /&#62;
 while ( have_posts() ) : the_post() ?&#38;gt;&#60;/p&#62;
&#60;p&#62;glad you fixed it.
&#60;/p&#62;</description>
</item>

</channel>
</rss>

