<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bright Cherry &#187; Wordpress</title>
	<atom:link href="http://www.brightcherry.co.uk/scribbles/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brightcherry.co.uk/scribbles</link>
	<description></description>
	<lastBuildDate>Fri, 27 Aug 2010 18:00:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress- Display Google Adsense After 1st Paragraph Tag</title>
		<link>http://www.brightcherry.co.uk/scribbles/2009/08/23/wordpress-display-google-adsense-after-1st-paragraph-tag/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/2009/08/23/wordpress-display-google-adsense-after-1st-paragraph-tag/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 00:06:42 +0000</pubDate>
		<dc:creator>Maruf</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=161</guid>
		<description><![CDATA[I&#8217;ve been playing around with Google Adsense a lot lately- in particular trying to find out where the ads are best placed on a WordPress Blog to maximise click through rates (CTR). I&#8217;ve been looking at some wordpress plugins, but I couldn&#8217;t find any that allowed me to display an ad unit after the first [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with Google Adsense a lot lately- in particular trying to find out where the ads are best placed on a WordPress Blog to maximise click through rates (CTR). I&#8217;ve been looking at some wordpress plugins, but I couldn&#8217;t find any that allowed me to display an ad unit after the first paragraph, or even second, third or forth..etc.</p>
<p><img src="http://www.brightcherry.co.uk/images/blogimages/adsense.gif" title="Google Adsense" alt="Google Adsense" /></p>
<p>So I wrote some code which allowed me to do exactly that. In the single.php page, replace the following code:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p161code3'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p1613"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p161code3"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>With&#8230;</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p161code4'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p1614"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code" id="p161code4"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$show_after_p</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">substr_count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #000088;">$show_after_p</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$contents</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$p_count</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$contents</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #990000;">echo</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p_count</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$show_after_p</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">?&gt;</span>
                INSERT ADSENSE CODE
		<span style="color: #000000; font-weight: bold;">&lt;?</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #990000;">echo</span> <span style="color: #0000ff;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$p_count</span><span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>That code will automatically display your Adsense unit after the first paragraph. You can modify <b class="pink">$show_after_p = 1</b>, which will control which paragraph you want the unit to display after. </p>
<p>If the $show_after_p value exceeds the amount of paragraphs there are in a post, the ad unit won&#8217;t display.</p>
<p>If anyone knows a better solution, please let me know. And if anyone decides to use the code, let me know if it works for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/2009/08/23/wordpress-display-google-adsense-after-1st-paragraph-tag/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress: Displaying Parent Categories Only &amp; Putting Categories Into A Foreach Loop</title>
		<link>http://www.brightcherry.co.uk/scribbles/2009/06/30/wordpress-displaying-parent-categories-only-putting-categories-into-a-foreach-loop/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/2009/06/30/wordpress-displaying-parent-categories-only-putting-categories-into-a-foreach-loop/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 10:07:53 +0000</pubDate>
		<dc:creator>Maruf</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=145</guid>
		<description><![CDATA[I&#8217;ve been working with manipulating WordPress Categories a lot recently, so I&#8217;m just going to quickly jot down a few notes, as I&#8217;m sure I&#8217;ll need these in the future. From what i&#8217;m aware, currently, WordPress doesn&#8217;t allow enough flexibility when it comes to manipulating categories, especially when it comes to identifying the difference between [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with manipulating WordPress Categories a lot recently, so I&#8217;m just going to quickly jot down a few notes, as I&#8217;m sure I&#8217;ll need these in the future. </p>
<p>From what i&#8217;m aware, currently, WordPress doesn&#8217;t allow enough flexibility when it comes to manipulating categories, especially when it comes to identifying the difference between a &#8220;Parent&#8221; and &#8220;Child&#8221; category. Let me explain&#8230; </p>
<h4>The &#8220;Depth&#8221; Parameter</h4>
<p>WordPress only recently added a &#8220;depth&#8221; parameter, which allows you to pull out ONLY parent or child categories. However, it still isn&#8217;t flexible enough because you can only use it with limited functions.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p145code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p1458"><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code" id="p145code8"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>ul<span style="color: #339933;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
wp_list_categories<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'depth=1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #339933;">&lt;/</span>ul<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>The above code will list all parent categories in a list format. The downside of this approach? It&#8217;s not flexible enough because it lists the parent categories as links. But if that&#8217;s all you&#8217;re after, that&#8217;s cool. But If you want more flexibility with categories, that won&#8217;t help.</p>
<h4>Putting Categories Into a Foreach Loop And manipulating</h4>
<p>The solution to the problem above is as follows:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p145code9'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p1459"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p145code9"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$categories</span> <span style="color: #339933;">=</span> get_categories<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$categories</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$cat</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">parent</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <span style="color: #990000;">echo</span> <span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">category_nicename</span>
    <span style="color: #990000;">echo</span> <span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_name</span> <span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>The above code will put the categories into an array, meaning you can now pass the values through a foreach loop (as shown in the code), consequently, you can completely control how you want the categories to display. In the example, I&#8217;m only printing the category name and category nice name (category url). But you can print out a lot more, which I explain a bit further down</p>
<p>The <b class="pink">$cat->parent</b> variable prints the parent of each category. If the category doesn&#8217;t have a parent, it has a value of 0. So by adding the <b class="pink">if($cat->parent < 1)</b> condition, we prevent all child categories from displaying.</p>
<p>To view all the values in the array or further possible manipulation, print the following array:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p145code10'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p14510"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p145code10"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">print_r</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$categories</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>I hope that&#8217;s been useful <img src='http://www.brightcherry.co.uk/scribbles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/2009/06/30/wordpress-displaying-parent-categories-only-putting-categories-into-a-foreach-loop/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress- Only Display Element On Homepage</title>
		<link>http://www.brightcherry.co.uk/scribbles/2008/10/20/wordpress-only-display-element-on-homepage/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/2008/10/20/wordpress-only-display-element-on-homepage/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 09:37:34 +0000</pubDate>
		<dc:creator>Maruf</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=78</guid>
		<description><![CDATA[A lot of the files in WordPress are used as includes e.g Sidebar, header and footer. What if you want certain elements in those includes to appear just on the Homepage? I find myself needing that feature all the time. Example All you really need is one simple function. So for example, in your header [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of the files in WordPress are used as includes e.g Sidebar, header and footer. What if you want certain elements in those includes to appear just on the Homepage? I find myself needing that feature all the time.</p>
<h4>Example</h4>
<p>All you really need is one simple function. So for example, in your header you may have an image which you want to appear on the homepage:</p>
<p><img src="http://www.brightcherry.co.uk/images/logo.png" title="brightCherry Logo" alt="BrightCherry Logo" /></p>
<h4>The Code</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p78code12'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p7812"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p78code12"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #339933;">&lt;</span>img src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.brightcherry.co.uk/images/logo.png&quot;</span> title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;brightCherry Logo&quot;</span> alt<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;BrightCherry Logo&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Now the image will only appear on the homepage!</p>
<p>Next time i&#8217;ll show you how to link specific elements to particular posts <img src='http://www.brightcherry.co.uk/scribbles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/2008/10/20/wordpress-only-display-element-on-homepage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anyone Got Any Technical Questions About WordPress?</title>
		<link>http://www.brightcherry.co.uk/scribbles/2008/09/29/anyone-got-any-technical-questions-about-wordpress/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/2008/09/29/anyone-got-any-technical-questions-about-wordpress/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 00:01:27 +0000</pubDate>
		<dc:creator>Maruf</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=44</guid>
		<description><![CDATA[We use WordPress a lot over here- not only for our own blog, but also our clients. Consequently, a lot of our developers, including myself, are becoming more and more familiar with the WordPress environment. In my opinion, WordPress is by far the best blogging platform available because it&#8217;s easy to use, works great, and [...]]]></description>
			<content:encoded><![CDATA[<p>We use WordPress a lot over here- not only for our own blog, but also our clients. Consequently, a lot of our developers, including myself, are becoming more and more familiar with the WordPress environment.</p>
<p><img src="http://www.brightcherry.co.uk/images/blogimages/wordpress.jpg" alt="Wordpress" title="Wordpress" /></p>
<p>In my opinion, WordPress is by far the best blogging platform available because it&#8217;s easy to use, works great, and has a wide range of support and plugins available. There is probably a plugin for pretty much anything you may ever want to do- the hardest part is tracking it down.</p>
<p>This blog post is an open forum for anyone that has any technical questions about WordPress. Is there something that you&#8217;re trying to do, but can&#8217;t? I&#8217;m not talking about visual questions <b class="pink">e.g. how do I move my navigation bar?</b> I&#8217;m talking about &#8220;technical&#8221; questions, <b class="pink">e.g. how do I allow people to leave comments on my &#8220;about me&#8221; page?</b></p>
<p>If I or anyone else in the team can answer the question, we&#8217;ll do so. If not, we&#8217;ll gracefully pass. </p>
<p>OK, fire away&#8230;</p>
<p>Disclaimer: in some cases, we may not offer the best solutions, but we&#8217;ll offer solutions in the way we would tackle the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/2008/09/29/anyone-got-any-technical-questions-about-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress- Get Image Path Relevant To Theme</title>
		<link>http://www.brightcherry.co.uk/scribbles/2008/09/19/wordpress-get-image-path-relevant-to-theme/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/2008/09/19/wordpress-get-image-path-relevant-to-theme/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 21:21:05 +0000</pubDate>
		<dc:creator>Maruf</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=36</guid>
		<description><![CDATA[I&#8217;ve had a few people ask me how they can link an image into a theme. Apparently they&#8217;re having problems finding the relevant path, no matter how many directories they go in and out of E.g &#8220;../../../images/mainimage.jpg&#8221; The Problem As a result, you&#8217;re left with something like this: It sounds like an unbelievably simple problem, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a few people ask me how they can link an image into a theme. Apparently they&#8217;re having problems finding the relevant path, no matter how many directories they go in and out of E.g &#8220;../../../images/mainimage.jpg&#8221;</p>
<h4>The Problem</h4>
<p>As a result, you&#8217;re left with something like this:</p>
<p><img src="http://www.brightcherry.co.uk/images/blogimages/missingimage.jpg" title="Missing image" alt="Missing image" /></p>
<p>It sounds like an unbelievably simple problem, but I think it&#8217;s it&#8217;s actually quite a common hurdle for many people who are just starting to develop WordPress themes. So for example, let&#8217;s say you&#8217;re creating a theme, and you want to display a logo. First you&#8217;d upload the image into the image folder, and then you&#8217;d type something like this:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p36code16'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3616"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p36code16"><pre class="html" style="font-family:monospace;">&lt;img src=&quot;blog/wp-contents/themes/mytheme/images/mainimage.jpg&quot; title=&quot;&quot; alt=&quot;&quot;</pre></td></tr></table></div>

<p>Of course, if you try that path, it won&#8217;t work, no matter how many directories you escape. The problem is that the WordPress htaccess file is redirecting the directory and making it impossible for you to get the file.</p>
<h4>The solution is simple</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p36code17'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3617"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p36code17"><pre class="html" style="font-family:monospace;">&lt;img src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/images/mainimage.jpg&quot; title=&quot;&quot; alt=&quot;&quot; /&gt;</pre></td></tr></table></div>

<p>Yup, it&#8217;s as easy as that.</p>
<p>All you need is</p>

<div class="wp_codebox_msgheader"><span class="right"><sup></sup></span><span class="left"><a rel="nofollow" href="javascript:;" onclick="javascript:showCodeTxt('p36code18'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3618"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p36code18"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/2008/09/19/wordpress-get-image-path-relevant-to-theme/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
	</channel>
</rss>
