<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make the Thesis theme more Bing-friendly</title>
	<atom:link href="http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-make-the-thesis-theme-more-bing-friendly</link>
	<description>Thesis and WordPress theme developer</description>
	<lastBuildDate>Tue, 31 Jan 2012 21:48:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kevin Williams</title>
		<link>http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/comment-page-1/#comment-6975</link>
		<dc:creator>Kevin Williams</dc:creator>
		<pubDate>Tue, 22 Feb 2011 18:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkdave.com/?p=1457#comment-6975</guid>
		<description>Wow thanks! 

Thanks exactly the kind of thing I was looking for but didn&#039;t know if there was a &quot;if single blog post&quot;</description>
		<content:encoded><![CDATA[<p>Wow thanks! </p>
<p>Thanks exactly the kind of thing I was looking for but didn&#8217;t know if there was a &#8220;if single blog post&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/comment-page-1/#comment-6973</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 22 Feb 2011 15:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkdave.com/?p=1457#comment-6973</guid>
		<description>@Kevin that&#039;s a nightmare way to do it. Try it using a WordPress conditional statement (is_single = single blog posts):

&lt;pre&gt;&lt;code&gt;
function custom_postmeta() {
if(is_single()) { ?&gt;
...add your HTML here
&lt;?php }
}

add_action(&#039;thesis_hook_after_post&#039; , &#039;custom_postmeta&#039;);
&lt;/code&gt;&lt;/pre&gt;

NB: for some reason WordPress is adding a space after the opening PHP tag. You&#039;ll need to remove it for this to work.</description>
		<content:encoded><![CDATA[<p>@Kevin that&#8217;s a nightmare way to do it. Try it using a WordPress conditional statement (is_single = single blog posts):</p>
<pre><code>
function custom_postmeta() {
if(is_single()) { ?>
...add your HTML here
< ?php }
}

add_action('thesis_hook_after_post' , 'custom_postmeta');
</code></code></pre>
<p>NB: for some reason WordPress is adding a space after the opening PHP tag. You'll need to remove it for this to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Williams</title>
		<link>http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/comment-page-1/#comment-6972</link>
		<dc:creator>Kevin Williams</dc:creator>
		<pubDate>Tue, 22 Feb 2011 15:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkdave.com/?p=1457#comment-6972</guid>
		<description>Thanks so much for the reply. What I did was put the post metas &quot;thesis_hook_comment_form_top&quot; - Then I used some CSS positioning to move it about the text &quot;Leave a Comment.&quot;

This works as long as I don&#039;t allow comments on pages, which I don&#039;t think I will need to do. When I had the post metas anywhere else they were showing up all over.

http://pri.kevinw.me/fundx/wordpress/?p=88</description>
		<content:encoded><![CDATA[<p>Thanks so much for the reply. What I did was put the post metas &#8220;thesis_hook_comment_form_top&#8221; &#8211; Then I used some CSS positioning to move it about the text &#8220;Leave a Comment.&#8221;</p>
<p>This works as long as I don&#8217;t allow comments on pages, which I don&#8217;t think I will need to do. When I had the post metas anywhere else they were showing up all over.</p>
<p><a href="http://pri.kevinw.me/fundx/wordpress/?p=88" rel="nofollow">http://pri.kevinw.me/fundx/wordpress/?p=88</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/comment-page-1/#comment-6971</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 22 Feb 2011 15:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkdave.com/?p=1457#comment-6971</guid>
		<description>@Kevin are you using the Feature Box hook for this? It&#039;s possible that you need to change the display settings in the Thesis &gt; Design Options panel if you are.

You can&#039;t create hook positions (without hacking the Thesis core), but I&#039;ve yet to find a need to add a hook position. If you mail me a more detailed description of what you&#039;re trying to achieve I&#039;ll see if I can help you out.</description>
		<content:encoded><![CDATA[<p>@Kevin are you using the Feature Box hook for this? It&#8217;s possible that you need to change the display settings in the Thesis > Design Options panel if you are.</p>
<p>You can&#8217;t create hook positions (without hacking the Thesis core), but I&#8217;ve yet to find a need to add a hook position. If you mail me a more detailed description of what you&#8217;re trying to achieve I&#8217;ll see if I can help you out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Williams</title>
		<link>http://www.thinkdave.com/how-to-make-the-thesis-theme-more-bing-friendly/comment-page-1/#comment-6959</link>
		<dc:creator>Kevin Williams</dc:creator>
		<pubDate>Wed, 16 Feb 2011 16:45:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkdave.com/?p=1457#comment-6959</guid>
		<description>Great to the point blog post, however I was searching for a way to create a entirely new hook-position.

My post metas are set to show up @ thesis_hook_after_post or after_post_box but they show up only on pages not blog posts: http://bit.ly/elCNPe

Not sure if creating a new hook position is doable or even the fastest way, could use some pointers.</description>
		<content:encoded><![CDATA[<p>Great to the point blog post, however I was searching for a way to create a entirely new hook-position.</p>
<p>My post metas are set to show up @ thesis_hook_after_post or after_post_box but they show up only on pages not blog posts: <a href="http://bit.ly/elCNPe" rel="nofollow">http://bit.ly/elCNPe</a></p>
<p>Not sure if creating a new hook position is doable or even the fastest way, could use some pointers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

