<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
		<title>gdp's Comments</title>
		<language>en-us</language>
		<link>https://www.intensedebate.com/users/265894</link>
		<description>Comments by John Crenshaw</description>
<item>
<title>Wordpress Hacker : Get Images Attached to a Post</title>
<link>http://wordpresshacker.com/get-images-attached-to-post/#IDComment12572476</link>
<description>Thanks for the heads up on that Keith. I try to catch those, but WordPress changes it every time I edit a post, so I miss those sometimes. </description>
<pubDate>Sun, 14 Dec 2008 05:20:36 +0000</pubDate>
<guid>http://wordpresshacker.com/get-images-attached-to-post/#IDComment12572476</guid>
</item><item>
<title>Wordpress Hacker : About Wordpress Hacker</title>
<link>http://wordpresshacker.com/about-wordpress-hacks/#IDComment12416616</link>
<description>I can download the files from your site. I can&amp;#039;t guarantee I&amp;#039;ll have a chance to check it out, but thanks for the heads up Allen! </description>
<pubDate>Wed, 10 Dec 2008 18:27:21 +0000</pubDate>
<guid>http://wordpresshacker.com/about-wordpress-hacks/#IDComment12416616</guid>
</item><item>
<title>Wordpress Hacker : Changing Excerpt Size Dynamically</title>
<link>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment12252499</link>
<description>I just noticed I gave a solution a while back in the case the author doesn&amp;#039;t write an excerpt in response to packfan77&amp;#039;s comment above. Did you try that? </description>
<pubDate>Mon, 8 Dec 2008 04:38:39 +0000</pubDate>
<guid>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment12252499</guid>
</item><item>
<title>Wordpress Hacker : wp_enqueue_script(), jQuery, and WordPress</title>
<link>http://wordpresshacker.com/jquery-wordpress-wp_enqueue_script/#IDComment11926380</link>
<description>If you mean the link below the comments section that says &amp;quot;Sign up for IntenseDebate&amp;quot;, that&amp;#039;s added by default when you install the IntenseDebate comment system. Hope that answers your question. </description>
<pubDate>Mon, 1 Dec 2008 16:25:47 +0000</pubDate>
<guid>http://wordpresshacker.com/jquery-wordpress-wp_enqueue_script/#IDComment11926380</guid>
</item><item>
<title>Wordpress Hacker : Changing Excerpt Size Dynamically</title>
<link>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment11420608</link>
<description>Have you tried printing the excerpt for those posts before using string functions to make sure wordpress is actually returning an excerpt in the first place?  As an aside, you should be able to hit enter on the comments text area without it submitting. This is a new comment system, so if anyone else is having that problem, let me know so I can look into it. </description>
<pubDate>Thu, 20 Nov 2008 00:05:52 +0000</pubDate>
<guid>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment11420608</guid>
</item><item>
<title>Wordpress Hacker : Changing Excerpt Size Dynamically</title>
<link>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment11416969</link>
<description>What&amp;#039;s the problem? </description>
<pubDate>Wed, 19 Nov 2008 21:45:27 +0000</pubDate>
<guid>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment11416969</guid>
</item><item>
<title>Wordpress Hacker : New Comments Powered by IntenseDebate</title>
<link>http://wordpresshacker.com/intensedebate-comments/#IDComment10959299</link>
<description>Glad I could be of some help! </description>
<pubDate>Sat, 15 Nov 2008 19:10:56 +0000</pubDate>
<guid>http://wordpresshacker.com/intensedebate-comments/#IDComment10959299</guid>
</item><item>
<title>Wordpress Hacker : Auto Create Navigation Tabs for New Pages</title>
<link>http://wphackr.com/auto-create-navigation-menu/#IDComment10955771</link>
<description>I just replied to your contact form inquiry. One other thing, have you given the navMenu custom field a value of &amp;quot;yes&amp;quot; (without quotes) only on the pages you want to show up in the navigation menu?  Also, make sure you have this line where it belongs (a previous version of this article had this line written incorrectly and was causing similar errors): if(strtolower(get_post_meta($page-&amp;gt;ID, $key, true)) == &amp;#039;yes&amp;#039;) </description>
<pubDate>Sat, 15 Nov 2008 18:59:57 +0000</pubDate>
<guid>http://wphackr.com/auto-create-navigation-menu/#IDComment10955771</guid>
</item><item>
<title>Wordpress Hacker : Auto Create Navigation Tabs for New Pages</title>
<link>http://wphackr.com/auto-create-navigation-menu/#IDComment10955735</link>
<description>How about border-left: 1px solid black; or something like that in the CSS? </description>
<pubDate>Sat, 15 Nov 2008 18:54:12 +0000</pubDate>
<guid>http://wphackr.com/auto-create-navigation-menu/#IDComment10955735</guid>
</item><item>
<title>Wordpress Hacker : Changing Excerpt Size Dynamically</title>
<link>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment10881375</link>
<description>My $post variable quick-reference may help a bit as well. &lt;a href=&quot;http://wordpresshacker.com/wordpress-post-variable-quick-reference/ &quot; target=&quot;_blank&quot;&gt;http://wordpresshacker.com/wordpress-post-variabl...&lt;/a&gt;</description>
<pubDate>Sat, 15 Nov 2008 00:37:54 +0000</pubDate>
<guid>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment10881375</guid>
</item><item>
<title>Wordpress Hacker : Changing Excerpt Size Dynamically</title>
<link>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment10880540</link>
<description>If there&amp;#039;s no excerpt, you&amp;#039;ll need to get a snippet of the post content. Off the top of my head, the best way to do that would probably be:       1. Test if post excerpt is longer than &amp;quot;&amp;quot;      2. If there&amp;#039;s no post excerpt, use the $post-&amp;gt;post_content instead of $post-&amp;gt;post_excerpt in the above code      That should do it, but I think $post-&amp;gt;post_content will return html tags and all, so you may need to strip out any formatting. </description>
<pubDate>Sat, 15 Nov 2008 00:35:17 +0000</pubDate>
<guid>http://wordpresshacker.com/changing-excerpt-size-dynamically/#IDComment10880540</guid>
</item>	</channel>
</rss>