<?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>PSDtoWPConversion.com</title>
	<atom:link href="http://psdtowpconversion.com/feed" rel="self" type="application/rss+xml" />
	<link>http://psdtowpconversion.com</link>
	<description>The Best PSD to WordPress Conversions...Period!</description>
	<lastBuildDate>Mon, 07 May 2012 13:20:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Nofollow Category Links in WordPress</title>
		<link>http://psdtowpconversion.com/wordpress-tips/nofollow-category-links-in-wordpress</link>
		<comments>http://psdtowpconversion.com/wordpress-tips/nofollow-category-links-in-wordpress#comments</comments>
		<pubDate>Fri, 27 Apr 2012 14:11:51 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2393</guid>
		<description><![CDATA[Google released another update a few days ago and apparently it looks for sites that are &#8220;over optimized&#8221; for specific keywords. It seems as though my site is one of the sites that was over optimized for the term &#8220;psd to wordpress&#8221;.
So I have been trying to correct the issue of over optimization and one of the many solutions I have seen floating around involves [...]]]></description>
			<content:encoded><![CDATA[<p>Google released another update a few days ago and apparently it looks for sites that are &#8220;over optimized&#8221; for specific keywords. It seems as though my site is one of the sites that was over optimized for the term &#8220;psd to wordpress&#8221;.</p>
<p>So I have been trying to correct the issue of over optimization and one of the many solutions I have seen floating around involves adding &#8220;nofollow&#8221; to category links. From what I have read links to categories on your site can be considered duplicate content. Please correct me if I am wrong.</p>
<p>So I went looking for a solution and all I was able to find was a bunch of plugins that will do this for you. As many of yo know I hate using plugins and instead opt for adding the functionality directly to the theme. After searching for almost an hour, I came across a little snippet of code from <a href="http://www.whitneykrape.com/2011/07/quick-fix-for-relcategory-tag-in-wordpress/" rel="nofollow" target="_blank">Whitney Krape</a> that does the trick rather well.</p>
<p>Open up your functions.php file and add the following:</p>
<pre class="brush: php; title: ; notranslate">

add_filter( 'the_category', 'add_nofollow_cat' );
function add_nofollow_cat( $text ) {
$text = str_replace('rel=&quot;category tag&quot;', 'rel=&quot;nofollow&quot;', $text); return $text;
}
</pre>
<p>That&#8217;s all you need really. Now any links to category&#8217;s on your site will have the &#8220;nofollow&#8221; tag. Do you think this is useful? Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-tips/nofollow-category-links-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fresh and Free Minimalist WordPress Themes</title>
		<link>http://psdtowpconversion.com/wordpress-themes/fresh-and-free-minimalist-wordpress-themes</link>
		<comments>http://psdtowpconversion.com/wordpress-themes/fresh-and-free-minimalist-wordpress-themes#comments</comments>
		<pubDate>Wed, 18 Apr 2012 13:57:33 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2366</guid>
		<description><![CDATA[Ah yes another fun filled post about WordPress themes and of course they are free as usual. As with all themes that are labeled &#8220;minimalist&#8221; all of these have nominal graphics, but yet still look cool and stylish.
The best part about most of them is they are responsive! I think this is a great trend and I am happy to see a lot of designers [...]]]></description>
			<content:encoded><![CDATA[<p>Ah yes another fun filled post about WordPress themes and of course they are free as usual. As with all themes that are labeled &#8220;minimalist&#8221; all of these have nominal graphics, but yet still look cool and stylish.</p>
<p>The best part about most of them is they are responsive! I think this is a great trend and I am happy to see a lot of designers making the extra effort to include this in their creations.</p>
<p>Kudos to the designers! know of any other minimalistic WordPress themes? Let us know&#8230;enjoy!</p>
<p><a href="http://speckyboy.com/2012/04/15/20-new-and-free-minimal-wordpress-themes/" rel="nofollow" target="_blank">Fresh and Free Minimalist WordPress Themes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-themes/fresh-and-free-minimalist-wordpress-themes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the Default Gravatar for Your Site</title>
		<link>http://psdtowpconversion.com/wordpress-tips/change-the-default-gravatar-for-your-site</link>
		<comments>http://psdtowpconversion.com/wordpress-tips/change-the-default-gravatar-for-your-site#comments</comments>
		<pubDate>Tue, 03 Apr 2012 18:59:22 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2325</guid>
		<description><![CDATA[One of the great things I like about WordPress is the ability to change pretty much anything you want to. This even holds true for the little gravatar mystery man we all know and love as well as the little monster thingies and the pattern icons we can set for our comments area. Recently a client asked me if there was a way to change [...]]]></description>
			<content:encoded><![CDATA[<p>One of the great things I like about WordPress is the ability to change pretty much anything you want to. This even holds true for the little <strong>gravatar mystery man</strong> we all know and love as well as the little monster thingies and the pattern icons we can set for our comments area. Recently a client asked me if there was a way to change the default gravatar to something more along the lines of their web sites look and feel.</p>
<p>So I decided I would write up a nice tutorial for my <strong>wordpress tips</strong> section and show you some simple steps to change the default gravatar.</p>
<p><strong>Step 1:</strong> The first thing you need to do is open up your functions.php file and add the following:</p>
<pre class="brush: php; title: ; notranslate">
add_filter( 'avatar_defaults', 'newgravatar' );

function newgravatar ($avatar_defaults) {
$myavatar = get_bloginfo('template_directory') . '/images/custom-gravatar.jpg';
$avatar_defaults[$myavatar] = &quot;Custom Gravatar&quot;;
return $avatar_defaults;
}
</pre>
<p>The cool thing about this is you can change &#8220;custom-gravatar.jpg&#8221; to anything you want. Once you have done that, make sure you put the image that you want to use in the images folder of your theme.</p>
<p><strong>Step 2:</strong>  Next thing is log in as admin then go to Settings, then to Discussion. You should see your custom gravatar as an option:</p>
<p><img class="aligncenter size-full wp-image-2345" title="Custom WordPress Gravatar" src="http://psdtowpconversion.com/wp-content/uploads/2012/04/new-custom-gravatar.gif" alt="Custom WordPress Gravatar" width="555" height="375" /></p>
<p>select your custom gravatar and click &#8220;Save Changes&#8221; and you should be good to go.</p>
<p>You can see it really is simple to change the default gravatar for WordPress. This option is available as part of the framework I use for conversions. As with anything concerning WordPress make sure you backup any files you are modifying in case something blows up. Do you know of great custom gravatars being used? Let me know. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-tips/change-the-default-gravatar-for-your-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Collection of WordPress Themes</title>
		<link>http://psdtowpconversion.com/wordpress-themes/a-new-collection-of-wordpress-themes</link>
		<comments>http://psdtowpconversion.com/wordpress-themes/a-new-collection-of-wordpress-themes#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:18:43 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2320</guid>
		<description><![CDATA[I kind of missed posting last week and I apologize, I get a lot of email asking where my latest post is and why I missed. I know it doesn&#8217;t seem that way as pretty much all of my posts have no comments. But you would be surprised. So as usual I went out looking for some good looking WordPress themes and finally came up [...]]]></description>
			<content:encoded><![CDATA[<p>I kind of missed posting last week and I apologize, I get a lot of email asking where my latest post is and why I missed. I know it doesn&#8217;t seem that way as pretty much all of my posts have no comments. But you would be surprised. So as usual I went out looking for some good looking <strong>WordPress themes</strong> and finally came up with a new post that has some that look really awesome! Check them out:</p>
<p><a href="http://www.noupe.com/design/a-collection-of-great-new-wordpress-themes.html" rel="nofollow" target="_blank">A New Collection of WordPress Themes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-themes/a-new-collection-of-wordpress-themes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure WordPress</title>
		<link>http://psdtowpconversion.com/wordpress-tips/secure-wordpress</link>
		<comments>http://psdtowpconversion.com/wordpress-tips/secure-wordpress#comments</comments>
		<pubDate>Mon, 12 Mar 2012 16:10:38 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2306</guid>
		<description><![CDATA[Whenever I help a client install WordPress and get their site up and running, many will ask me if I help secure their site so it isn&#8217;t hacked. Of course this is something that I help with because I normally do not want to have to go back and try and rebuild something that I have already done.
So what i am going to show you [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever I help a client install WordPress and get their site up and running, many will ask me if I help secure their site so it isn&#8217;t hacked. Of course this is something that I help with because I normally do not want to have to go back and try and rebuild something that I have already done.</p>
<p>So what i am going to show you (for those of you who do not know about this) are a few <strong>WordPress tips</strong> that will show you how you can secure your WordPress install and keep this nasty little hackers from taking over your site.</p>
<h3>Remove WordPress Version</h3>
<p>The first thing I like to do is remove the version generator from the header. Leaving this information intact will allow someone to view what version of WordPress you are running and if there are any known exploits for that version they can use those to hack your site. Most people will use a plugin to remove this, but there is no need to add another plugin. All you have to do is add the following to your functions.php file:</p>
<pre class="brush: php; title: ; notranslate">

function no_generator() { return ''; } add_filter( 'the_generator', 'no_generator' );
</pre>
<p>once you add this you should not see a version in the header section when viewing the page source.</p>
<h3>Protect the .htaccess and wp-config.php Files</h3>
<p>Another thing I like to do is add a few lines to the .htaccess file. Before you add anything i highly recommend that you back up the orginal .htaccess file in case something goes wrong. Open up your .htaccess files and add the following to it:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;files &quot;.htaccess&quot;&gt;
order allow,deny
deny from all
&lt;/files&gt;

&lt;files &quot;wp-config.php&quot;&gt;
order allow,deny
deny from all
&lt;/files&gt;</pre>
<p>What this does is keeps your .htaccess file and your wp-config.php file from being accessed by anyone. If they try to access it, they will get a 404 error. Works rather well.</p>
<h3>Prevent Injection</h3>
<p>One last bit of info I like to add to the .htaccess file is a little piece of code that prevents anyone from trying to inject anything like base64 code into the site. Since I have started using this I have never had any site hacked. This is not a guarantee, but from my experience it works great. Remember back up your .htaccess file before adding:</p>
<pre class="brush: plain; title: ; notranslate">
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\&lt;|%3C).*script.*(\&gt;|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
</pre>
<p>So there you have it! A few snippets of code that should keep your head from hurting and keep those pesky little school kids out. Do you know of any other ways to secure a WordPress site?</p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-tips/secure-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best WordPress Themes of 2012?</title>
		<link>http://psdtowpconversion.com/wordpress-themes/best-wordpress-themes-2012</link>
		<comments>http://psdtowpconversion.com/wordpress-themes/best-wordpress-themes-2012#comments</comments>
		<pubDate>Mon, 05 Mar 2012 13:42:51 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2303</guid>
		<description><![CDATA[So there I am as usual looking around trying to find a decent post about any new WordPress themes when something on this one site catches my eye. At the top of the post was a banner that said &#8220;Best WordPress Themes of 2012&#8243;. I couldn&#8217;t believe it. So I looked again and sure enough that&#8217;s what the banner said. Now I was a little [...]]]></description>
			<content:encoded><![CDATA[<p>So there I am as usual looking around trying to find a decent post about any new WordPress themes when something on this one site catches my eye. At the top of the post was a banner that said &#8220;Best WordPress Themes of 2012&#8243;. I couldn&#8217;t believe it. So I looked again and sure enough that&#8217;s what the banner said. Now I was a little perplexed how this was going to work out. Clearly the post was written in 2011 and here it is only March 5th, 2012&#8230;so how could these themes be the best of 2012? Oh well. Anywho there some good looking themes there so check it out.</p>
<p><a href="http://bloggingexperiment.com/best-wordpress-themes" rel="nofollow" target="_blank">Best WordPress Themes of 2012</a></p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-themes/best-wordpress-themes-2012/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed Up WordPress</title>
		<link>http://psdtowpconversion.com/wordpress-tips/speeding-up-wordpress</link>
		<comments>http://psdtowpconversion.com/wordpress-tips/speeding-up-wordpress#comments</comments>
		<pubDate>Mon, 27 Feb 2012 14:17:45 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2273</guid>
		<description><![CDATA[Every so often people will come to me and ask me how they can speed up WordPress and I always tell them the same thing. So I decided to stop hanging onto my little secret that I learned a while back and share with everyone.
First the bad news: this little tip is geared towards anyone who is hosted with the greates hosting company ever created: [...]]]></description>
			<content:encoded><![CDATA[<p>Every so often people will come to me and ask me how they can <strong>speed up WordPress</strong> and I always tell them the same thing. So I decided to stop hanging onto my little secret that I learned a while back and share with everyone.</p>
<p>First the bad news: this little tip is geared towards anyone who is hosted with the greates hosting company ever created: HostGator! Yeah, sorry about that folks. Now for the good news: If your hosting company uses cPanel, then this maybe an option you can ask them for. So give them a buzz or an email or send them smoke signals and ask and I sincerely hope it can be done.</p>
<p>The first thing your going to do is log into your HostGator account and once you are in scroll down until you see this section:</p>
<p><img class="aligncenter size-full wp-image-2275" title="hostgator2" src="http://psdtowpconversion.com/wp-content/uploads/2012/02/hostgator2.gif" alt="" width="499" height="158" /></p>
<p>Now click on the section that says &#8220;Optimize Website&#8221; and once you do you will see a screen that looks like this:</p>
<p><img class="aligncenter size-full wp-image-2282" title="compress-content" src="http://psdtowpconversion.com/wp-content/uploads/2012/02/compress-content.gif" alt="compress-content" width="555" height="356" /></p>
<p>Select &#8220;Compress all content&#8221; and then click Update settings. Now that you have that taken care of you need to check that this is in fact working, you can go to <a href="http://www.gidnetwork.com/tools/gzip-test.php" rel="nofollow" target="_blank">GIDZip Test</a> and input your sites address and it will check if in fact the above was turned on correctly.</p>
<p>Ok so now you should have a good boost in speed but there is still one thing you need to do and that is edit your .htaccess file and add some values. I am going to share what I have in mine:</p>
<pre class="brush: php; title: ; notranslate">

&lt;IfModule mod_deflate.c&gt;
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/atom_xml
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/x-httpd-php
AddOutputFilterByType DEFLATE application/x-httpd-fastphp
AddOutputFilterByType DEFLATE application/x-httpd-eruby
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE application/x-font-ttf application/x-font-otf
AddOutputFilterByType DEFLATE font/truetype font/opentype
&lt;/IfModule&gt;

# BEGIN Compress text files
&lt;IfModule mod_deflate.c&gt;
&lt;FilesMatch &quot;\.(css|js|x?html?|php)$&quot;&gt;
SetOutputFilter DEFLATE
&lt;/FilesMatch&gt;
&lt;/IfModule&gt;
# END Compress text files

# BEGIN Expire headers
&lt;IfModule mod_expires.c&gt;
ExpiresActive On
ExpiresDefault &quot;access plus 1 seconds&quot;
ExpiresByType image/x-icon &quot;access plus 2592000 seconds&quot;
ExpiresByType image/jpeg &quot;access plus 2592000 seconds&quot;
ExpiresByType image/png &quot;access plus 2592000 seconds&quot;
ExpiresByType image/gif &quot;access plus 2592000 seconds&quot;
ExpiresByType application/x-shockwave-flash &quot;access plus 2592000 seconds&quot;
ExpiresByType text/css &quot;access plus 604800 seconds&quot;
ExpiresByType text/javascript &quot;access plus 216000 seconds&quot;
ExpiresByType application/x-javascript &quot;access plus 216000 seconds&quot;
ExpiresByType text/html &quot;access plus 600 seconds&quot;
ExpiresByType application/xhtml+xml &quot;access plus 600 seconds&quot;
&lt;/IfModule&gt;
# END Expire headers

# BEGIN Cache-Control Headers
&lt;IfModule mod_headers.c&gt;
&lt;FilesMatch &quot;\\.(ico|jpe?g|png|gif|swf)$&quot;&gt;
Header set Cache-Control &quot;max-age=2592000, public&quot;
&lt;/FilesMatch&gt;
&lt;FilesMatch &quot;\\.(css)$&quot;&gt;
Header set Cache-Control &quot;max-age=604800, public&quot;
&lt;/FilesMatch&gt;
&lt;FilesMatch &quot;\\.(js)$&quot;&gt;
Header set Cache-Control &quot;max-age=216000, private&quot;
&lt;/FilesMatch&gt;
&lt;FilesMatch &quot;\\.(x?html?|php)$&quot;&gt;
Header set Cache-Control &quot;max-age=600, private, must-revalidate&quot;
&lt;/FilesMatch&gt;
&lt;/IfModule&gt;
# END Cache-Control Headers
# BEGIN Turn ETags Off
&lt;IfModule mod_headers.c&gt;
Header unset ETag
&lt;/IfModule&gt;
FileETag None
# END Turn ETags Off
# BEGIN Remove Last-Modified Header
&lt;IfModule mod_headers.c&gt;
Header unset Last-Modified
&lt;/IfModule&gt;
# END Remove Last-Modified Header
</pre>
<p>I do all of this for every WordPress site I develop or help with and it works wonders. Do you know of any other <strong>wordpress tips</strong> that concern speeding up wordpress? Let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-tips/speeding-up-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Responsive WordPress Themes</title>
		<link>http://psdtowpconversion.com/wordpress-themes/more-responsive-wordpress-themes-2</link>
		<comments>http://psdtowpconversion.com/wordpress-themes/more-responsive-wordpress-themes-2#comments</comments>
		<pubDate>Mon, 20 Feb 2012 13:30:08 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2255</guid>
		<description><![CDATA[So there I was, kicking back with nothing or should I say not wanting to do anything except relax and I decided to see what the latest happenings were going on in the world of WordPress. I decided that I need to look for some updates concerning WordPress themes so I did a search and across news from a site about the 25 best responsive [...]]]></description>
			<content:encoded><![CDATA[<p>So there I was, kicking back with nothing or should I say not wanting to do anything except relax and I decided to see what the latest happenings were going on in the world of WordPress. I decided that I need to look for some updates concerning <strong>WordPress themes</strong> so I did a search and across news from a site about the 25 best responsive WordPress themes. Of course every site that does a post about WordPress themes says it is the &#8220;best this&#8221; or &#8220;best that&#8221; &#8211; I can however state these are some pretty good looking themes. Best? No not the best, but close.</p>
<p><a href="http://smashinghub.com/25-best-responsive-wordpress-themes-2012.htm" rel="nofollow" target="_blank">25 Best responsive WordPress Themes</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-themes/more-responsive-wordpress-themes-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Execute PHP Inside A Widget Without A Plugin</title>
		<link>http://psdtowpconversion.com/wordpress-tips/execute-php-inside-a-widget-without-a-plugin</link>
		<comments>http://psdtowpconversion.com/wordpress-tips/execute-php-inside-a-widget-without-a-plugin#comments</comments>
		<pubDate>Fri, 17 Feb 2012 14:49:08 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2243</guid>
		<description><![CDATA[A few weeks ago I had a client who wanted to run PHP inside the widgets of his theme that I was creating for him. Unfortunately he didnt want to use a plugin and I had no idea how to get this accomplished. So I went out looking for any wordpress tips and I found one. All you need to do is add the following [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I had a client who wanted to run PHP inside the widgets of his theme that I was creating for him. Unfortunately he didnt want to use a plugin and I had no idea how to get this accomplished. So I went out looking for any <strong>wordpress tips</strong> and I found one. All you need to do is add the following to your functions.php file. You should then be able to run any kind of php in a regular text widget &#8211; without installing a new plugin.</p>
<pre class="brush: php; title: ; notranslate">add_filter('widget_text','execute_php',100);
 function execute_php($html){
 if(strpos($html,&quot; $html=ob_get_contents();
 ob_end_clean();
 }
 return $html;
 }</pre>
<p>Thanks to <a href="http://www.emanueleferonato.com/2011/04/11/executing-php-inside-a-wordpress-widget-without-any-plugin/" rel="nofollow" target="_blank">Emanuele Feronato</a> for this great snippet of code.</p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-tips/execute-php-inside-a-widget-without-a-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Free WordPress Themes</title>
		<link>http://psdtowpconversion.com/wordpress-themes/10-free-wordpress-themes</link>
		<comments>http://psdtowpconversion.com/wordpress-themes/10-free-wordpress-themes#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:44:16 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://psdtowpconversion.com/?p=2237</guid>
		<description><![CDATA[I found a really good post showcasing 10 free WordPress themes, so I thought that i would share this great find with all of you. There are a few responsive themes as well as some pretty cool looking portfolio type themes. Do you know of any other free WordPress themes that deserve some recognition? Let us all know. Enjoy!
10 Free WordPress Themes
]]></description>
			<content:encoded><![CDATA[<p>I found a really good post showcasing 10 free WordPress themes, so I thought that i would share this great find with all of you. There are a few responsive themes as well as some pretty cool looking portfolio type themes. Do you know of any other <strong>free WordPress themes</strong> that deserve some recognition? Let us all know. Enjoy!</p>
<p><a href="http://tutspress.com/free-wordpress-themes/10-best-free-wordpress-themes-collection-february-2012/" rel="nofollow" target="_blank">10 Free WordPress Themes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://psdtowpconversion.com/wordpress-themes/10-free-wordpress-themes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

