<?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 Dudes</title>
	<atom:link href="http://wordpress.dudesnetwork.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpress.dudesnetwork.com</link>
	<description>WordPress Tips, Tricks and Hacks</description>
	<lastBuildDate>Wed, 31 Mar 2010 19:13:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>5 New Features in WordPress 3.0</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/31/5-new-features-in-wordpress-3-0/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/31/5-new-features-in-wordpress-3-0/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:13:02 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=105</guid>
		<description><![CDATA[WordPress 3.0 is a month away (Official Release date is May 1st, 2010), but a few of its new features have already been leaked to the public.  There are a few that are nice, but not completely necessary for hardcore WordPress user (new default theme, custom background for a theme, new welcome guide), but [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.0 is a month away (Official Release date is May 1st, 2010), but a few of its new features have already been leaked to the public.  There are a few that are nice, but not completely necessary for hardcore WordPress user (new default theme, custom background for a theme, new welcome guide), but here a few features I&#8217;m really excited about.<span id="more-105"></span></p>
<ol>
<li> <strong>Custom Default Username/Password</strong><br />
When you currently install WordPress, you are given a default username (admin) and a random password.  If every installation has an &#8220;admin&#8221; username, that&#8217;s just one less step a hacker has to deal with.  Not only will this be a nice security upgrade, but now you don&#8217;t have to worry about changing that randomly assigned password upon installation.</li>
<li> <strong>Custom Post Types</strong><br />
Making a custom Post Type will add a box under the left sidebar in the admin section to separate posts from the &#8220;Posts&#8221; section.  It will behave as if you add a new &#8220;Posts&#8221; section.  Another great feature if you&#8217;re using WordPress as a CMS.</li>
<li> <strong>Navigation Menu</strong><br />
Another proponent to use WordPress as a CMS.  You&#8217;ll be able to make different menu items consisting of Categories, Pages, External and Internal Links.</li>
<li> <strong>Author Templates</strong><br />
This will give you the ability to have a different template for each author&#8217;s posts.</li>
<li> <strong>Network of WordPress Sites</strong><br />
This is the most interesting feature for us here at the Dudes Network, as it lets you use a single WordPress installation to manage a network of different WordPress sites.  We don&#8217;t know too much about it now, but I for one and anxious to see how this will implemented.</li>
</ol>
<p>Is anyone else as excited about May 1st as I am?</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/31/5-new-features-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Automatically Include jQuery</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/22/automatically-include-jquery/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/22/automatically-include-jquery/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 15:55:44 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=102</guid>
		<description><![CDATA[Automatically include jQuery to your blog&#8217;s theme by entering the following script in your theme&#8217;s functions.php page:

if &#40;!is_admin&#40;&#41;&#41; &#123;
wp_deregister_script&#40;'jquery'&#41;;
wp_register_script&#40;'jquery', &#40;&#34;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#34;&#41;, false, '1.3.2'&#41;;
wp_enqueue_script&#40;'jquery'&#41;;
&#125;;

Not only do you not have to worry about including it in the header.php file of your theme, but it will always pull the most up-to-date version from Google&#8217;s servers.
]]></description>
			<content:encoded><![CDATA[<p>Automatically include jQuery to your blog&#8217;s theme by entering the following script in your theme&#8217;s <em>functions.php</em> page:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>is_admin<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
wp_deregister_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
wp_register_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'1.3.2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></pre></div></div>

<p><span id="more-102"></span>Not only do you not have to worry about including it in the <em>header.php</em> file of your theme, but it will always pull the most up-to-date version from Google&#8217;s servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/22/automatically-include-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Survive Traffic Spikes</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/15/survive-traffic-spikes/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/15/survive-traffic-spikes/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 15:02:13 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[load balancing]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[wp-cache]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=90</guid>
		<description><![CDATA[Your WordPress site should be able to handle a decent amount of traffic, assuming it&#8217;s hosted on a fairly reliable server.  But what happens if your site is featured on a website like Digg, and all of the sudden your site is getting hit with tens of thousands of visitors at once?  Chances [...]]]></description>
			<content:encoded><![CDATA[<p>Your WordPress site should be able to handle a decent amount of traffic, assuming it&#8217;s hosted on a fairly reliable server.  But what happens if your site is featured on a website like Digg, and all of the sudden your site is getting hit with tens of thousands of visitors at once?  Chances are, your site will be overwhelmed with the amount of incoming connections to the database and your site will fail to display for most users.  Luckily, there is a neat plugin to help you survive these traffic spikes.<br />
<span id="more-90"></span></p>
<p>One way to get around this issue is to install a plugin called <a href="http://mnm.uib.es/gallir/wp-cache-2/">wp-cache</a>.  This plugin is neat because it generates an HTML page once a post has been published and saves it in a static cache file.  Calling upon the cache file to display the post will greatly reduce the amount of database connections needed when the post is accessed.</p>
<p>The plugin also lets you specify certain pages you don&#8217;t want cached for those &#8220;just-in-case&#8221; scenarios.</p>
<p>Outside of WordPress (and if you have access), you can set certain connection and timeout limits on your MySQL and Apache installations to help control the strain on your server.</p>
<p>What do you do to survive high traffic spikes on your WordPress installation?</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/15/survive-traffic-spikes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieving Posts Within A Date Range</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/12/retrieving-posts-within-a-date-range/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/12/retrieving-posts-within-a-date-range/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:54:39 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[add_filter]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[filter_where]]></category>
		<category><![CDATA[query_posts()]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[remove_filter]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=71</guid>
		<description><![CDATA[If you develop WordPress themes, you have probably come across the need to display posts within a certain range of dates.  Unfortunately, this isn&#8217;t something you can easily do within the query_posts(); function.  However, you can still do this by creating and running a filter. Add the following code BEFORE the query_posts(); function:


function [...]]]></description>
			<content:encoded><![CDATA[<p>If you develop WordPress themes, you have probably come across the need to display posts within a certain range of dates.  Unfortunately, this isn&#8217;t something you can easily do within the <em>query_posts();</em> function.  However, you can still do this by creating and running a filter. Add the following code BEFORE the <em>query_posts();</em> function:</p>
<p><span id="more-71"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> filter_where<span style="color: #009900;">&#40;</span><span style="color: #000088;">$where</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
       <span style="color: #000088;">$where</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot; AND post_date &gt; '&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Y-m-d'</span><span style="color: #339933;">,</span> <span style="color: #990000;">mktime</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;m&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">,</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;d&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">7</span><span style="color: #339933;">,</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; 00:00:00' AND post_date &lt; '&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Y-m-d'</span><span style="color: #339933;">,</span> <span style="color: #990000;">mktime</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;m&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">,</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;d&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; 23:59:59'&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$where</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'posts_where'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'filter_where'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This filter will display all posts from 7 days before the current date, starting at midnight, until the current day at 11:59:59pm.  This can be especially useful if you want to a box on your sidebar that shows only your posts from the past week.</p>
<p>After you run your query, be sure to include:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'posts_where'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'filter_where'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>If you don&#8217;t remove the filter, all other queries on the page will have the filter applied to it as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/12/retrieving-posts-within-a-date-range/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Featured Plugin &#8211; XML Sitemap Generator</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/11/featured-plugin-xml-sitemap-generator/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/11/featured-plugin-xml-sitemap-generator/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 14:19:42 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xml sitemap generator]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=53</guid>
		<description><![CDATA[Having a Sitemap residing on your server is an essential part of the Search Engine Optimization (SEO) process for any website.  It&#8217;s easy to create one on a static site, but for an ever changing and dynamic site like your WordPress blog, it can be a nightmare.  Luckily, there is an excellent plugin [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.dudesnetwork.com/wp-content/uploads/2010/03/xml_file.png"><img class="alignright size-full wp-image-59" style="border: 0pt none;" title="xml_file" src="http://wordpress.dudesnetwork.com/wp-content/uploads/2010/03/xml_file.png" alt="" width="128" height="128" /></a>Having a Sitemap residing on your server is an essential part of the Search Engine Optimization (SEO) process for any website.  It&#8217;s easy to create one on a static site, but for an ever changing and dynamic site like your WordPress blog, it can be a nightmare.  Luckily, there is an excellent plugin out there called <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">XML Sitemap Generator</a>.</p>
<p><span id="more-53"></span></p>
<p>This plugin will not only generate a sitemap based on your site&#8217;s content, but also notify popular search engines such as Google, Bing, and Ask.com of updates made to your blog.  But the awesomeness doesn&#8217;t stop there.  In addition, it will also let you specify any additional pages of your blog to include/exclude, where you want to save the sitemap, change frequencies of each post and the priorities of each post.</p>
<p>If you aren&#8217;t already signed up for <a href="http://www.google.com/webmasters/tools/">Google Webmaster Tools</a>, do so immediately.  After you have verified your site, click on Site Configuration and then Sitemaps.  Click &#8220;Submit A Sitemap&#8221; and type in the path to where you saved it.  If you used the default settings, it should look something like this:</p>
<p><a href="http://wordpress.dudesnetwork.com/wp-content/uploads/2010/03/sitemap.jpg"><img class="alignnone size-full wp-image-63" title="sitemap" src="http://wordpress.dudesnetwork.com/wp-content/uploads/2010/03/sitemap.jpg" alt="" width="553" height="85" /></a></p>
<p>The process is similar for other search engines.</p>
<p>So if you want to make search engines aware of your blog and get noticed, this is definitely one of the first places to start.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/11/featured-plugin-xml-sitemap-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Single Out A Specific User</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/10/single-out-a-specific-user/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/10/single-out-a-specific-user/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 17:39:02 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[$current_user]]></category>
		<category><![CDATA[get_currentuserinfo()]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=30</guid>
		<description><![CDATA[Have you ever wanted to test out some new code on your WordPress template, but don&#8217;t want your readers to see it quite yet?  No problem, there&#8217;s an easy way to do this.  Just single yourself out by using the following code:


&#60;?php global $current_user;
get_currentuserinfo&#40;&#41;;
&#160;
if &#40;$current_user-&#62;user_login == &#34;admin&#34;&#41;:
//Insert Code Here
endif;
?&#62;

This is, of course, assuming that you [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to test out some new code on your WordPress template, but don&#8217;t want your readers to see it quite yet?  No problem, there&#8217;s an easy way to do this.  Just single yourself out by using the following code:</p>
<p><span id="more-30"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$current_user</span><span style="color: #339933;">;</span>
get_currentuserinfo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">user_login</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;admin&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span>
<span style="color: #666666; font-style: italic;">//Insert Code Here</span>
<span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This is, of course, assuming that you are logged in as &#8220;admin&#8221;.  If not, then replace &#8220;admin&#8221; with whatever your username is.  This makes it easy for you to preview changes to the template before they are live.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/10/single-out-a-specific-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Quick To-Dos After A WordPress Installation</title>
		<link>http://wordpress.dudesnetwork.com/2010/03/09/5-quick-to-dos-after-a-wordpress-installation/</link>
		<comments>http://wordpress.dudesnetwork.com/2010/03/09/5-quick-to-dos-after-a-wordpress-installation/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:13:14 +0000</pubDate>
		<dc:creator>LunchBox</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[permalink]]></category>

		<guid isPermaLink="false">http://wordpress.dudesnetwork.com/?p=3</guid>
		<description><![CDATA[Congratulations, you&#8217;ve just installed Wordpress.  What next?  Before you start customizing and writing posts, here are a few things you can do to improve and secure your WordPress installation.

Disable HTML in Comments
If you do not want your users styling their comments, or spamming them with links, you can add this line of code to your [...]]]></description>
			<content:encoded><![CDATA[<p>Congratulations, you&#8217;ve just installed Wordpress.  What next?  Before you start customizing and writing posts, here are a few things you can do to improve and secure your WordPress installation.</p>
<ol>
<li><strong>Disable HTML in Comments<br />
</strong>If you do not want your users styling their comments, or spamming them with links, you can add this line of code to your <em>functions.php</em> file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'pre_comment_content'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wp_specialchars'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li><strong>Remove WordPress version from the source code<br />
</strong>Anyone can view the source code of your website.  In most cases, your <em>header.php</em> file will contain the version number of your current installation.  To have it automatically removed, add this to your <em>functions.php</em> file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_head'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wp_generator'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This prevents any hackers from targeting the flaws and bugs of a specific version of WordPress to hack your website. <span id="more-3"></span></li>
<li><strong>Edit Permalink Structure</strong><br />
Set your permalinks to include the post&#8217;s title.  This not only makes your URL more readable, but is also a great technique for Search Engine Optimization.</li>
<li><strong>Activate Akismet</strong><br />
It doesn&#8217;t matter who you are or what your blog is about, spammers will find it and they will leave spam comments.  Luckily, WordPress comes with a decent spam blocker, Akismet.  To activate it, you&#8217;ll need to get a WordPress API key.  Simply register for one on <a title="WordPress.com" href="http://www.wordpress.com" target="_blank">WordPress.com</a>.  Once you have the key, activate the plug-in and enter the key.</li>
<li><strong>Implement a backup schedule.</strong><br />
No server is ever 100% reliable.  Be proactive and make a schedule to export your site&#8217;s posts, pages, comments, custom fields, categories and tags just in case anything should happen.  The more frequent you post, the more frequent you should backup.  To run the export, go to Tools -&gt;Export.  Keep this file safe and secure off your web server.</li>
</ol>
<p>That&#8217;s it for now.  Be sure to check back for more tips, tricks and hacks as WordPress Dudes gets underway.  Thanks for visiting!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.dudesnetwork.com/2010/03/09/5-quick-to-dos-after-a-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
