<?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>Wordpress designer</title>
	<atom:link href="http://www.wordpress-designer.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wordpress-designer.co.uk</link>
	<description>Wordpress design development - installation customisation theme integration</description>
	<lastBuildDate>Mon, 28 Nov 2011 10:47:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Search specific category in wordpress</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/search-specific-category-in-wordpress/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/search-specific-category-in-wordpress/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 10:43:05 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=235</guid>
		<description><![CDATA[There are some times when you want to limit your search to a particular category, or perhaps multiple categories. This is relatively simple to do in WordPress by adding a hidden field to your search code. (See example below) form method="get" id="search form" action="/" input type="text" value="" name="s" id="s" input type="hidden" value="22" name="cat" id="scat" /form [...]]]></description>
			<content:encoded><![CDATA[<p>There are some times when you want to limit your search to a particular category, or perhaps multiple categories. This is relatively simple to do in WordPress by adding a hidden field to your search code. (See example below)</p>
<pre>
form method="get" id="search form" action="/"
input type="text" value="" name="s" id="s"
input type="hidden" value="22" name="cat" id="scat"
/form
</pre>
<p><span id="more-235"></span><br />
You can see I added my hidden input field on the third line. When I add this in, it then adds onto the query used to search. Your search will go from something like http://www.wordpress-designer.co.uk/?s=WordPress to http://www.wordpress-designer.co.uk/?s=WordPress&amp;cat=22 and will only return posts in the category ID you choose.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/search-specific-category-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remove p tags from images</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/remove-p-tags-from-images/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/remove-p-tags-from-images/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 10:39:51 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[functions]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=232</guid>
		<description><![CDATA[Simply paste the following code on your theme functions.php file, save it, and the &#60;p&#62; tags are gone. function filter_ptags_on_images($content){ return preg_replace('/&#60;p&#62;\s*(&#60;a .*&#62;)?\s*(&#60;img .* \/&#62;)\s*(&#60;\/a&#62;)?\s*&#60;\/p&#62;/iU', '\1\2\3', $content); } add_filter('the_content', 'filter_ptags_on_images'); Thanks to James for the great hack!]]></description>
			<content:encoded><![CDATA[<p>Simply paste the following code on your theme functions.php file, save it, and the &lt;p&gt; tags are gone.</p>
<pre>function filter_ptags_on_images($content){
    return preg_replace('/&lt;p&gt;\s*(&lt;a .*&gt;)?\s*(&lt;img .* \/&gt;)\s*(&lt;\/a&gt;)?\s*&lt;\/p&gt;/iU', '\1\2\3', $content);
}

add_filter('the_content', 'filter_ptags_on_images');</pre>
<p><strong></p>
<p><span id="more-232"></span><em>Thanks to <a href="http://blog.fublo.net/2011/05/wordpress-p-tag-removal/">James</a> for the great hack!</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/remove-p-tags-from-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beyond the 5 minute install</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/beyond-the-5-minute-install/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/beyond-the-5-minute-install/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 09:07:58 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=220</guid>
		<description><![CDATA[This is a fantastic presentation by Steve Taylor at the 2011 Wordcamp UK conference that shares some important information on how to make your wordpress install more secure and faster.]]></description>
			<content:encoded><![CDATA[<p>This is a fantastic presentation by Steve Taylor at the 2011 Wordcamp UK conference that shares some important information on how to make your wordpress install more secure and faster.</p>
<p><span id="more-220"></span></p>
<div style="width:555px" id="__ss_8619933">  <iframe src="http://www.slideshare.net/slideshow/embed_code/8619933" width="555" height="455" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>   </div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/beyond-the-5-minute-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add multiple menus to a wordpress site</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/add-multiple-menus-to-a-wordpress-site/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/add-multiple-menus-to-a-wordpress-site/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 15:03:29 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[menus]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=214</guid>
		<description><![CDATA[Recently I need to implement multiple menu in wordpress. Often we comes in the situation where theme support only 1 menu whereas we need more than it. There is simple way I found in wordpress to do it by changes in few lines of code. register_nav_menus function is the primary menu (default menu in wordpress), [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I need to implement multiple menu in wordpress. Often we comes in the situation where theme support only 1 menu whereas we need more than it. There is simple way I found in wordpress to do it by changes in few lines of code.</p>
<p><span id="more-214"></span><br />
register_nav_menus function is the primary menu (default menu in wordpress), you can find in function.php file. Search for &#8220;register_nav_menus&#8221; you will find it.</p>
<p>You need to replace the code there for the code below to get a second menu item:</p>
<p><code>// This theme uses wp_nav_menu() in one location.<br />
register_nav_menus( array(<br />
'primary' =&gt; __( 'Primary Navigation', 'twentyten' ),<br />
) );<br />
</code><span style="font-family: monospace;">register_nav_menus( array(<br />
</span><span style="font-family: monospace;">&#8216;footer&#8217; =&gt; __( &#8216;Footer Navigation&#8217;, &#8216;twentyten&#8217; ),<br />
</span><span style="font-family: monospace;">) );</span></p>
<p>Now go to appearance -&gt;menus for setting links under footer menu. That’s It.</p>
<p><img class="alignnone size-medium wp-image-215" title="menus" src="http://www.wordpress-designer.co.uk/wp-content/uploads/2011/08/menus-276x300.png" alt="" width="276" height="300" /></p>
<p>Menu tabs available in <a title="download latest version of wordpress" href="http://wordpress.org/download/" target="_blank">wordpress 3.0 or latest versions</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/add-multiple-menus-to-a-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add post thumbnails to RSS feed</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/add-post-thumbnails-to-rss-feed/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/add-post-thumbnails-to-rss-feed/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:22:11 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=207</guid>
		<description><![CDATA[This very cool piece of code will get the post thumbnail and automatically add it to your RSS feeds. Paste the code into functions.php and save the file. Don’t forget that you need to use a theme that supports post thumbnails for this snippet to work. function cwc_rss_post_thumbnail($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This very cool piece of code will get the post thumbnail and automatically add it to your RSS feeds.</strong></p>
<p>Paste the code into functions.php and save the file. </p>
<p><span id="more-207"></span>Don’t forget that you need to use a theme that supports post thumbnails for this snippet to work.</p>
<p><code>function cwc_rss_post_thumbnail($content) {<br />
    global $post;<br />
    if(has_post_thumbnail($post->ID)) {<br />
        $content = '< p >' . get_the_post_thumbnail($post->ID) .<br />
        '< /p >' . get_the_content();<br />
    }<br />
    return $content;<br />
}<br />
add_filter('the_excerpt_rss', 'cwc_rss_post_thumbnail');<br />
add_filter('the_content_feed', 'cwc_rss_post_thumbnail');</code></p>
<p>Learn more at &#8211; <a href="http://www.catswhocode.com/blog/8-new-and-amazing-wordpress-hacks">www.catswhocode.com/blog/8-new-and-amazing-wordpress-hacks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/add-post-thumbnails-to-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix RSS feed for WordPress</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/how-to-fix-rss-feed-for-wordpress/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/how-to-fix-rss-feed-for-wordpress/#comments</comments>
		<pubDate>Wed, 25 May 2011 10:42:21 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=202</guid>
		<description><![CDATA[Are you getting a broken RSS XML feed from feedburner and social networking services that take your sites RSS feed? Error message &#8220;Whitespace in line 1&#8243; Here&#8217;s a video explaining the simple steps needed to resolve this problem. Download the Fix RSS feed plugin]]></description>
			<content:encoded><![CDATA[<p>Are you getting a broken RSS XML feed from feedburner and social networking services that take your sites RSS feed? Error message &#8220;Whitespace in line 1&#8243;</p>
<p><span id="more-202"></span>Here&#8217;s a video explaining the simple steps needed to resolve this problem. </p>
<p><iframe width="560" height="349" src="http://www.youtube.com/embed/PfpyFitRvow" frameborder="0" allowfullscreen></iframe></p>
<p>Download the <a href="http://wordpress.org/extend/plugins/fix-rss-feed/">Fix RSS feed plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/how-to-fix-rss-feed-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best collection of WordPress video tutorials</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/best-collection-of-wordpress-video-tutorials/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/best-collection-of-wordpress-video-tutorials/#comments</comments>
		<pubDate>Mon, 23 May 2011 22:12:26 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=198</guid>
		<description><![CDATA[Whether you are just starting out using WordPress, or you want to give your client some training on how to manage pages in WordPress, the videos here are definitely worth checking out. View them all for free at Graph Paper Press]]></description>
			<content:encoded><![CDATA[<p>Whether you are just starting out using WordPress, or you want to give your client some training on how to manage pages in WordPress, the videos here are definitely worth checking out.</p>
<p><span id="more-198"></span></p>
<p>View them all for free at <a href="http://graphpaperpress.com/videos/">Graph Paper Press</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/best-collection-of-wordpress-video-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increasing the upload filesize in WordPress</title>
		<link>http://www.wordpress-designer.co.uk/news/tips/increasing-the-upload-filesize-in-wordpress/</link>
		<comments>http://www.wordpress-designer.co.uk/news/tips/increasing-the-upload-filesize-in-wordpress/#comments</comments>
		<pubDate>Wed, 18 May 2011 17:48:18 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[filesize]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.wordpress-designer.co.uk/?p=189</guid>
		<description><![CDATA[I had problems with editing the php.ini file because with most webhosts it is globally and inaccessable for us and you still would have to add a line in .htaccess anyway. However, I found an easier way if you have access to the .htaccess file in your www folder. Just include the following 2 lines [...]]]></description>
			<content:encoded><![CDATA[<p>I had problems with editing the php.ini file because with most webhosts it is globally and inaccessable for us and you still would have to add a line in .htaccess anyway. </p>
<p><span id="more-189"></span></p>
<p>However, I found an easier way if you have access to the .htaccess file in your www folder. Just include the following 2 lines in .htaccess:</p>
<p><code>php_value upload_max_filesize 20M<br />
php_value post_max_size 20M</code></p>
<p>For changing the memory limit add/edit this in .htaccess:</p>
<p><code>php_value memory_limit 20M</code></p>
<p>And of course change the 20 to anything you need.</p>
<p>Or you can follow the steps at wptheming &#8211; <a href="http://wptheming.com/2009/07/upload_max_filesize">http://wptheming.com/2009/07/upload_max_filesize</a> if the above does not work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-designer.co.uk/news/tips/increasing-the-upload-filesize-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

