<?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>Nashville Interactive &#187; web-development</title>
	<atom:link href="http://www.nashvilleinteractive.com/blog/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nashvilleinteractive.com</link>
	<description>Nashville Web Design</description>
	<lastBuildDate>Fri, 30 Jul 2010 13:57:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress Inserting p Tags Automatically</title>
		<link>http://www.nashvilleinteractive.com/blog/wordpress-inserting-p-tags-automatically/</link>
		<comments>http://www.nashvilleinteractive.com/blog/wordpress-inserting-p-tags-automatically/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 19:48:43 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/?p=887</guid>
		<description><![CDATA[It can be somewhat annoying that WP automatically inserts &#60;p&#62; tags into your posts and pages via the WYSIWYG editor. In order to 86 this functionality you can just add... <a href="http://www.nashvilleinteractive.com/blog/wordpress-inserting-p-tags-automatically/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>It can be somewhat annoying that WP automatically inserts &lt;p&gt; tags into your posts and pages via the WYSIWYG editor. In order to 86 this functionality you can just add <strong>remove_filter (&#39;the_content&#39;, &#39;wpautop&#39;);</strong> to your functions.php file. You&#39;ll now have to add paragraph tags manually but if you&#39;re semi-savvy with basic html, that shouldn&#39;t be an issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/wordpress-inserting-p-tags-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passing FlashVar Strings to Flash with AS3</title>
		<link>http://www.nashvilleinteractive.com/blog/passing-flashvar-strings-to-flash-with-as3/</link>
		<comments>http://www.nashvilleinteractive.com/blog/passing-flashvar-strings-to-flash-with-as3/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:40:09 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/?p=847</guid>
		<description><![CDATA[I found all sorts of complicated posts on the in-ter-net about this but none were clear and concise. Hopefully this will be&#8230; (but I&#39;m no Flash expert) I basically needed... <a href="http://www.nashvilleinteractive.com/blog/passing-flashvar-strings-to-flash-with-as3/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>I found all sorts of complicated posts on the in-ter-net about this but none were clear and concise. Hopefully this will be&#8230; (but I&#39;m no Flash expert) I basically needed to pass an xml file path to a Flash image rotator through the embed/object markup in the html file. Using FlashVars this is actually pretty easy in AS3. note: I usually use swfobject to work with Flash but this particular project called for the more &quot;traditional&quot; embed/object tags.</p>
<p>The html markup&#8230;</p>
<blockquote><p><code><br />
&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;640&quot; height=&quot;348&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;xml_path=xml/news2.xml&quot; /&gt;&lt;param name=&quot;src&quot; value=&quot;preview.swf&quot; /&gt;&lt;param name=&quot;flashvars&quot; value=&quot;xml_path=xml/news2.xml&quot; /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; width=&quot;640&quot; height=&quot;348&quot; src=&quot;preview.swf&quot; flashvars=&quot;xml_path=xml/news2.xml&quot; wmode=&quot;transparent&quot; quality=&quot;high&quot;&gt;&lt;/embed&gt;&lt;/object&gt;<!--formatted--></code></p></blockquote>
<hr />
<p>The ActionScript code&#8230;</p>
<blockquote><p>root.loaderInfo.parameters.xml_path;</p></blockquote>
<p>(or if you need it in a variable&#8230;)</p>
<blockquote><p>
var xmlFilePath:String = root.loaderInfo.parameters.xml_path;</p></blockquote>
<p>Hope that helps someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/passing-flashvar-strings-to-flash-with-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spacebar and Option Keys Won&#039;t Work In Adobe Illustrator</title>
		<link>http://www.nashvilleinteractive.com/blog/spacebar-and-option-keys-wont-work-in-adobe-illustrator/</link>
		<comments>http://www.nashvilleinteractive.com/blog/spacebar-and-option-keys-wont-work-in-adobe-illustrator/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:15:46 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=314</guid>
		<description><![CDATA[Had the oddest thing happen today; The spacebar and option keys stopped working while I was using Illustrator CS4. I did a little searching and testing and found that Firefox... <a href="http://www.nashvilleinteractive.com/blog/spacebar-and-option-keys-wont-work-in-adobe-illustrator/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>Had the oddest thing happen today; The spacebar and option keys stopped working while I was using Illustrator CS4. I did a little searching and testing and found that Firefox (v3.6) was the culprit. I quit FF and the spacebar/hand tool/option keys were back! I was able to restart Firefox and everything is still working fine with both programs running. I&#39;m sure other programs could cause this issue as well. Odd bug that can drive you crazy. Makes you realize how important that little spacebar is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/spacebar-and-option-keys-wont-work-in-adobe-illustrator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing Signup/Register Link in WordPress</title>
		<link>http://www.nashvilleinteractive.com/blog/changing-signupregister-link-in-wordpress/</link>
		<comments>http://www.nashvilleinteractive.com/blog/changing-signupregister-link-in-wordpress/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 17:43:29 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=301</guid>
		<description><![CDATA[This gets placed in your theme&#39;s functions.php&#8230; &#39;Signup&#39; is the text for the register link in this example. &#39;Logout&#39; is the message displayed when the user is logged in. That... <a href="http://www.nashvilleinteractive.com/blog/changing-signupregister-link-in-wordpress/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>This gets placed in your theme&#39;s functions.php&#8230; &#39;Signup&#39; is the text for the register link in this example. &#39;Logout&#39; is the message displayed when the user is logged in. That could easily be a link to their profile or the admin area as well.</p>
<blockquote><p>add_action( &#39;register&#39; , &#39;register_replacement&#39; );<br />
function register_replacement( $link ){<br />
if ( ! is_user_logged_in() ) {<br />
if ( get_option(&#39;users_can_register&#39;) )<br />
$link = $before . &#39;&lt;a href=&quot;&#39; . site_url(&#39;wp-login.php?action=register&#39;, &#39;login&#39;) . &#39;&quot;&gt;&#39; . __(&#39;Signup&#39;) . &#39;&lt;/a&gt;&#39; . $after;<br />
else<br />
$link = &quot;;<br />
} else {<br />
$link = $before . &#39;&lt;a href=&quot;&#39; . wp_logout_url() . &#39;&quot;&gt;&#39; . __(&#39;Logout&#39;) . &#39;&lt;/a&gt;&#39; . $after;<br />
}<br />
return $link;<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/changing-signupregister-link-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Favorite and Most Used WordPress Plugins</title>
		<link>http://www.nashvilleinteractive.com/blog/my-favorite-and-most-used-wordpress-plugins/</link>
		<comments>http://www.nashvilleinteractive.com/blog/my-favorite-and-most-used-wordpress-plugins/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 06:14:45 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=296</guid>
		<description><![CDATA[login-lockdown &#8211; protect your neck nextgen gallery &#8211; great for internally managed photo galleries tubepress &#8211; let youtube handle the bandwidth and conversion please. eventsmanager (for RSVP type events) gigpress... <a href="http://www.nashvilleinteractive.com/blog/my-favorite-and-most-used-wordpress-plugins/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>login-lockdown &#8211; protect your neck</p>
<p>nextgen gallery &#8211; great for internally managed photo galleries</p>
<p>tubepress &#8211; let youtube handle the bandwidth and conversion please.</p>
<p>eventsmanager (for RSVP type events)</p>
<p>gigpress (for musician-style tours)</p>
<p>capabilities manager &#8211; if you have multiple content editors with varying roles.</p>
<p>Mail From &#8211; change the default from email address and name.</p>
<p>exclude-pages &#8211; sometimes the main nav doesn&#39;t need to be that cluttered</p>
<p>user photo &#8211; great for adding some personality especially with multiple content authors</p>
<p>maintenance mode &#8211; show users something professional while testing and updating</p>
<p>shadowbox js / lightbox PLUS &#8211; sexy photo/video presentation</p>
<p>advanced twitter widget &#8211; meh. it works well for client managed twitter feeds.</p>
<p>Register Plus &#8211; get all the info you can from your users</p>
<p>all in one SEO pack &#8211; what good is a site if no one finds it</p>
<p>kadom-ads-management &#8211; if you have savvy enough admins to manage their own ad space</p>
<p>wp super cache &#8211; great for high-traffic sites but can cause issues with some plugins</p>
<p>formbuilder &#8211; submits forms via email and to the db. export to csv. nice.</p>
<p>FeedBurner FeedSmith &#8211; if you&#39;re into feedburner for rss feed management. This plugin works excellently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/my-favorite-and-most-used-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excerpts and Read More Links in WordPress 2.9+</title>
		<link>http://www.nashvilleinteractive.com/blog/excerpts-and-read-more-links-in-wordpress-2-9/</link>
		<comments>http://www.nashvilleinteractive.com/blog/excerpts-and-read-more-links-in-wordpress-2-9/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 05:41:11 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Excerpt Length]]></category>
		<category><![CDATA[More link]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[[...]]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=253</guid>
		<description><![CDATA[With the release of WordPress 2.9, there have been a couple nice little enhancements to excerpts. It&#39;s now very easy to change the good old [...] to whatever you&#39;d like... <a href="http://www.nashvilleinteractive.com/blog/excerpts-and-read-more-links-in-wordpress-2-9/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>With the release of WordPress 2.9, there have been a couple nice little enhancements to excerpts. It&#39;s now very easy to change the good old [...] to whatever you&#39;d like including a simple &quot;More&quot; link that links to the post. It&#39;s also now just as easy to control the length of the excerpts as well. Simply use the code below as a starting point. Place this code in your theme&#39;s functions.php</p>
<blockquote><p>function new_excerpt_more($more) {<br />
return &#39;&#8230; &lt;a href=&quot;&#39;.get_permalink().&#39;&quot;&gt;MORE&lt;/a&gt;&#39;;<br />
}<br />
add_filter(&#39;excerpt_more&#39;, &#39;new_excerpt_more&#39;);</p>
<p>function new_excerpt_length($length) {<br />
return 30;<br />
}<br />
add_filter(&#39;excerpt_length&#39;, &#39;new_excerpt_length&#39;);</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/excerpts-and-read-more-links-in-wordpress-2-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving a WordPress Site</title>
		<link>http://www.nashvilleinteractive.com/blog/moving-a-wordpress-site/</link>
		<comments>http://www.nashvilleinteractive.com/blog/moving-a-wordpress-site/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 20:42:01 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=208</guid>
		<description><![CDATA[I love WordPress and I use it pretty much exclusively for small to mid-sized website development. WordPress development is quick, easy and website owners love the fact that there&#39;s none... <a href="http://www.nashvilleinteractive.com/blog/moving-a-wordpress-site/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p><em>I love WordPress</em> and I use it pretty much exclusively for <a href="http://www.nashvilleinteractive.com">small to mid-sized website development</a>. WordPress development is quick, easy and website owners love the fact that there&#39;s none of the complications that come with proprietary content management systems. Sometimes it becomes necessary to move your beloved WordPress sites to other servers or directories. I&#39;ve found many online resources elaborating on this topic including the WordPress docs themselves. I prefer to have a quick reference guide for my own purposes though. I&#39;ve given credit and links where applicable.</p>
<p>If you&#39;re moving a WordPress site to a different server or a different directory on the current server there are several steps to go through to ensure that everything works correctly on the other side of the move.</p>
<p>The Database Edits: (from <a href="http://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/" target="_blank">My Digital Life</a>)</p>
<p>SQL From phpMyAdmin or similar: (in phpMyAdmin go to the top level of the database by clicking on the db name and click on the &quot;SQL&quot; tab. don&#39;t forget to add the appropriate db table prefix if different from the default wp_ )</p>
<blockquote><p>UPDATE wp_options SET option_value = replace(option_value, &#39;http://www.old-domain.com&#39;, &#39;http://www.new-domain.com&#39;) WHERE option_name = &#39;home&#39; OR option_name = &#39;siteurl&#39;;</p>
<p>UPDATE wp_posts SET guid = replace(guid, &#39;http://www.old-domain.com&#39;,'http://www.new-domain.com&#39;);</p>
<p>UPDATE wp_posts SET post_content = replace(post_content, &#39;http://www.old-domain.com&#39;, &#39;http://www.new-domain.com&#39;);</p></blockquote>
<p>On occasion you may need to add this to your config.php file: (from the <a href="http://codex.wordpress.org/Changing_The_Site_URL" target="_blank">WordPress Codex</a>)</p>
<blockquote><p>define(&#39;WP_HOME&#39;,'http://www.new-site-location.com&#39;);<br />
define(&#39;WP_SITEURL&#39;,'http://www.new-site-location.com/subdirectory-if-applicable&#39;);</p></blockquote>
<p>Sometimes it&#39;s necessary to update permalinks by simply going to SETTINGS &gt; PERMALINKS and clicking on SAVE CHANGES. you don&#39;t have to change anything, just click the button. Not sure why but it works.</p>
<p>The WordPress Codex has a <a href="http://codex.wordpress.org/Moving_WordPress">detailed article on moving WordPress</a> available.</p>
<p>Don&#39;t forget to check your theme files (and Flash!) for hard-coded file paths.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/moving-a-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress permissions issues. Can&#039;t auto-update Plugins?</title>
		<link>http://www.nashvilleinteractive.com/blog/wordpress-permissions-issues-cant-auto-update-plugins/</link>
		<comments>http://www.nashvilleinteractive.com/blog/wordpress-permissions-issues-cant-auto-update-plugins/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 17:40:30 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[media temple dv 3.5 server]]></category>
		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=205</guid>
		<description><![CDATA[I&#39;m currently on a Media Temple DV 3.5 hosting server and I design and develop using wordpress a lot. WP seems to work great on shared servers as far as... <a href="http://www.nashvilleinteractive.com/blog/wordpress-permissions-issues-cant-auto-update-plugins/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>I&#39;m currently on a Media Temple DV 3.5 hosting server and <a href="http://www.nashvilleinteractive.com">I design and develop using wordpress a lot</a>. WP seems to work great on shared servers as far as the auto upgrades, installing plugins and uploading media. However, WordPress installs on my server always required me to use an FTP program to <strong>temporarily</strong> change directory permissions to 777 in order to upgrade WP itself or plugins and I had various issues uploading media through the media manager. Even then, I still had to input the FTP password in the WordPress backend. This gets to be a pain if you&#39;re actively <a href="http://www.nashvilleinteractive.com/">using a WordPress as a Content Management System</a>. Of course <strong>leaving directory permissions at 777 is not a valid option</strong> so I did a little digging and found that several other people had the same issue.</p>
<p>I had previously used suPHP to take care of this but there&#39;s a much easier solution found on the MT forums&#8230; https://forums.mediatemple.net/viewtopic.php?id=4413 &#8211; This solution uses FastCGI+SuExec to allow php scripts to fix permissions issues on a media temple dv server. It&#39;s fairly easy to accomplish and isn&#39;t quite as messy as installing suPHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/wordpress-permissions-issues-cant-auto-update-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Color Shift With Photoshop Save For Web</title>
		<link>http://www.nashvilleinteractive.com/blog/fixing-color-shift-with-photoshop-save-for-web/</link>
		<comments>http://www.nashvilleinteractive.com/blog/fixing-color-shift-with-photoshop-save-for-web/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 05:40:06 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=159</guid>
		<description><![CDATA[UPDATED 11/7/09 I have linked to an article below that sheds some light on the whole washed-out color when using Photoshop&#39;s Save For Web. I&#39;m not an expert on color... <a href="http://www.nashvilleinteractive.com/blog/fixing-color-shift-with-photoshop-save-for-web/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p>UPDATED 11/7/09</p>
<p>I have linked to an article below that sheds some light on the whole washed-out color when using Photoshop&#39;s Save For Web. I&#39;m not an expert on color space <i>this</i> and profile <i>that</i>. I just want to design in Photoshop and create an optimized image that looks like what I designed. I recently upgraded to CS4 and I&#39;ve found that this is much easier in this newer version of Photoshop.</p>
<p>I have Photoshop CS4 set to ask me about profile mismatches (under EDIT > COLOR SETTINGS), and if I&#39;m working on an image for the web I just &quot;discard the embedded profile (don&#39;t color manage)&quot; when it asks me upon opening an image. Then I&#39;m able to just uncheck the &quot;Convert to sRGB&quot; checkbox in the Save for Web&quot; dialog window and everything <i>usually</i> turns out great.</p>
<p>When I was <b>using Photoshop CS2</b>, consistent color via save for web seemed to be much harder to achieve. A few tricks (mentioned in the article below) are to make sure your document is using the sRGB-IEC61blahblah2.1 profile. Find this under EDIT > COLOR SETTINGS and EDIT > CONVERT TO PROFILE if your doc isn&#39;t using that profile. Also the preview mode is something that threw me for a loop. Make sure you&#39;re viewing your doc in the correct preview mode. Find this under VIEW > PROOF SETUP and assign to sRGBIEC61&#8230;  via CUSTOM if need be. You might also want to uncheck the ICC profile checkbox in the Save For Web dialog window.</p>
<p>I think all of this has to do with how browsers handle (or don&#39;t handle) color profiles. It&#39;s all more than I care to deal with to be honest so I just do what works and I&#39;m not sure how or why it works. Terrible I know but I&#39;ve got better things to spend my time on than figuring out why Photoshop does things the way it does. Plus I&#39;ve read so many conflicting articles on the subject I feel I&#39;ve spent enough time trying to figure it out.</p>
<p>here&#39;s the article on <a href="http://www.creativepro.com/article/tips-for-managing-web-color-in-photoshop">Photoshop save for web color shift</a> from CreativePro.com.</p>
<p>Hope this helps someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/fixing-color-shift-with-photoshop-save-for-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>excluding certain categories from the wordpress loop or rss feeds</title>
		<link>http://www.nashvilleinteractive.com/blog/excluding-certain-categories-from-the-wordpress-loop-or-rss-feeds/</link>
		<comments>http://www.nashvilleinteractive.com/blog/excluding-certain-categories-from-the-wordpress-loop-or-rss-feeds/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 06:17:42 +0000</pubDate>
		<dc:creator>Chris Bradshaw</dc:creator>
				<category><![CDATA[web-development]]></category>

		<guid isPermaLink="false">http://www.nashvilleinteractive.com/blog/?p=132</guid>
		<description><![CDATA[to exclude a certain category of posts from the WP loop: &#60;?php query_posts(&#34;cat=-46&#8243;); ?&#62; &#60;?php if (have_posts()) : ?&#62; blah blah blah. and then close with the old: &#60;?php //Reset... <a href="http://www.nashvilleinteractive.com/blog/excluding-certain-categories-from-the-wordpress-loop-or-rss-feeds/">MORE</a>]]></description>
			<content:encoded><![CDATA[<p><strong>to exclude a certain category of posts from the WP loop:</strong></p>
<p>&lt;?php query_posts(&quot;cat=-46&#8243;); ?&gt;<br />
&lt;?php if (have_posts()) : ?&gt;<br />
blah blah blah. and then close with the old:<br />
&lt;?php<br />
//Reset Query<br />
wp_reset_query();<br />
?&gt;</p>
<p><strong>To exclude certain categories from an RSS feed on another webpage (like a non-wp homepage):</strong></p>
<p>http://yourdomain.com/blog/feed/?cat=-46</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nashvilleinteractive.com/blog/excluding-certain-categories-from-the-wordpress-loop-or-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
