<?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>Word Impressed</title>
	<atom:link href="http://www.wordimpressed.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wordimpressed.com</link>
	<description>Impressed by WordPress</description>
	<lastBuildDate>Thu, 09 Feb 2012 21:53:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WP Fix: Blank Search Sends Users to the Homepage</title>
		<link>http://www.wordimpressed.com/wordpress/fix-blank-search-sends-you-to-the-homepage/</link>
		<comments>http://www.wordimpressed.com/wordpress/fix-blank-search-sends-you-to-the-homepage/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 21:52:40 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1141</guid>
		<description><![CDATA[If you're experiencing blank search queries redirecting you to your homepage here's the fix.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2012/02/search-thumb-150x150.png" alt="" title="search-thumb" width="150" height="150" class="alignright size-thumbnail wp-image-1142" />In a recent project I had a problem with the search results page.  Basically, when a user clicks on the search button without typing a keyword he or she is brought to the homepage.  Rather, the query should be empty and either display the list of result or tell the user that they need to enter a keyword (validation).</p>
<h2>How to Fix the Search</h2>
<p>After searching the Internets I found a few fixes.  Here&#8217;s one on the <a href="http://wordpress.org/support/topic/blank-search-sends-you-to-the-homepage" title="WordPress Forum: Blank search sends you to the homepage" target="_blank" rel="nofollow">WordPress forums</a> that seemed the most promising.  This led me to the code below which, after being <strong>added to your theme&#8217;s functions.php file</strong>, will <em>bring prevent the user from going to homepage and rather display the search results page</em>.</p>
<h3>Add to your theme&#8217;s functions.php file</h3>

<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;">'request'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'my_request_filter'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> my_request_filter<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$query_vars</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$query_vars</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$query_vars</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h2>A Few Notes</h2>
<p>Blank search results seems to only happen when you have your homepage set to a static page in WordPress rather than the default settings.  I haven&#8217;t seen any mentions of other configurations causing this on the web.</p>
<h3>WordPress DEVs are Aware of the Issue</h3>
<p>Here&#8217;s a <a href="http://core.trac.wordpress.org/ticket/11330" title="Empty search takes you to hompage instead of empty search page" target="_blank">WP Trac ticket</a> opened at WordPress that says as of 2-months ago a fix for this is slated for future WP version 3.3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/wordpress/fix-blank-search-sends-you-to-the-homepage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to turn off WP Post Revisions</title>
		<link>http://www.wordimpressed.com/wordpress/how-to-turn-off-wp-post-revisions/</link>
		<comments>http://www.wordimpressed.com/wordpress/how-to-turn-off-wp-post-revisions/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 03:52:42 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1133</guid>
		<description><![CDATA[Have a lot of post revisions cluttering your database?  Turn off WordPress post revisions!  Here's how.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2012/01/wp-post-revisions1.png" alt="" title="wp-post-revisions" width="164" height="161" class="alignright size-full wp-image-1138" />Post revisions can be helpful for many users, but some users prefer to disable this default feature.  You may have thousands of posts and are noticing a database slowdown, this will help.  Maybe you just don&#8217;t want to use this feature.  Let&#8217;s disable it!</p>
<h2>How to disable WordPress Post Revisions</h2>
<p>Do you prefer a Plugin or Code?</p>
<h3>Code Method:</h3>
<p>Disabling the <a href="http://codex.wordpress.org/Revision_Management" title="WordPress Revision Management" target="_blank">WordPress&#8217; Revision Management</a> feature is simple:</p>
<p><strong>Open your wp-config.php</strong> file in the root directory of your WordPress installation.  </p>
<p>Add this snippet of code at the top of the file (or bottom):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//disable WP Post Revisions</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'WP_POST_REVISIONS'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>false, 0: do not store any revisions (except the one autosave per post)</p>
<h3>Plugin Method</h3>
<p>There&#8217;s a number of plugins that will keep you away from the code and safely deleting your revisions:</p>
<p><a href="http://wordpress.org/extend/plugins/revision-control/">Revision Control</a> is the most popular WP Revision management plugin.  There&#8217;s also <a href="http://wordpress.org/extend/plugins/no-revisions/" title="No revisions WP plugin" target="_blank">No Revisions</a> which is less popular but gets the job done</p>
<h2>How to Delete Existing Post Revision from Database</h2>
<h3>MySQL Query Method</h3>
<p><strong>For Advanced Users</strong>: Open up phpMyAdmin (SQL Pro) or what-have-you and run the follow query.   If you like to</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">DELETE a<span style="color: #339933;">,</span>b<span style="color: #339933;">,</span>c
FROM wp_posts a
LEFT <span style="color: #990000;">JOIN</span> wp_term_relationships b ON <span style="color: #009900;">&#40;</span>a<span style="color: #339933;">.</span>ID <span style="color: #339933;">=</span> b<span style="color: #339933;">.</span>object_id<span style="color: #009900;">&#41;</span>
LEFT <span style="color: #990000;">JOIN</span> wp_postmeta c ON <span style="color: #009900;">&#40;</span>a<span style="color: #339933;">.</span>ID <span style="color: #339933;">=</span> c<span style="color: #339933;">.</span>post_id<span style="color: #009900;">&#41;</span>
WHERE a<span style="color: #339933;">.</span>post_type <span style="color: #339933;">=</span> <span style="color: #0000ff;">'revision'</span></pre></div></div>

<p>*Disclaimer: Perform a db backup prior to running any queries to delete from your database</p>
<h3>Plugin Method</h3>
<p>The following plugins do the trick just fine (and perhaps &#8220;Better&#8221;):</p>
<p><a href="http://wordpress.org/extend/plugins/better-delete-revision/">Better Delete Revision</a></p>
<p><a href="http://wordpress.org/extend/plugins/delete-revision/">Delete-Revision</a></p>
<h3>Why is WP_POST_REVISIONS enabled by Default?</h3>
<p>While I cannot find an official explanation, my consensus is that many users find this feature an easy way to backup your posts and revert.  WordPress is providing piece-of-mind, saving users from data loss.  This feature is not available on many other popular CMS platforms.  </p>
<p>I hope this article helps my fellow WordPress Community Memebers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/wordpress/how-to-turn-off-wp-post-revisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jFlow Plus v2 &#8211; A Compact jQuery Slider</title>
		<link>http://www.wordimpressed.com/plugins/jflow-plus-v2-demo-documentation-download/</link>
		<comments>http://www.wordimpressed.com/plugins/jflow-plus-v2-demo-documentation-download/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 09:17:55 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1106</guid>
		<description><![CDATA[jFlow Plus v2 is a compact slider and next generation of the popular jFlow jQuery slider.  Check out why you should be using jFlow on your next project!]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/10/jflowplus-logo.jpg" alt="jQuery Plus Verion 2" title="jflowplus-logo" width="580" height="180" class="alignnone size-full wp-image-1107" /></p>
<p><strong>jFlow Plus is a compact slider (~4kb minified) with multiple effects and configurations that is cross-browser compatible and actively developed on by the open source community.</strong></p>
<h2><a href="http://www.wordimpressed.com/demos/jflowplus-v2/" title="View the jFlow Demo">Click to view the jFlow Demo</a></h2>
<p><a href="http://www.wordimpressed.com/demos/jflowplus-v2/" title="View the jFlow Demo"><img src="http://www.wordimpressed.com/wp-content/uploads/2011/11/jflow-demo.jpg" alt="Click to view the jFlow Demo" title="jflow-demo" width="580" height="480" class="alignnone size-full wp-image-1123" /></a></p>
<h2>Why Should You jFlow?</h2>
<p>There are many sliders on the Internet to chose from, so why this one?  Good question.  First, let&#8217;s start with simplicity.  A lot of jQuery slider plugins take an experienced developer to setup, not jFlow.  We&#8217;ve got a superb demo for your to reference, download and implement.  Novice web developers can get this puppy up and running in no time.  What else you ask?  Here&#8217;s a brief summary:</p>
<ul>
<li>Simple to setup</li>
<li>Cross-browser Compatible</li>
<li>Compatible with latest version of jQuery</li>
<li>Open Source and Community Supported</li>
<li>Actively Developed</li>
<li>Good Documentation and Support</li>
<li>and many more&#8230;</li>
</ul>
<h2>Help with Your jFlow</h2>
<p>Planning on using jFlow for your next WordPress site?  Great!  Here&#8217;s a few tips to get your started quickly:</p>
<ul>
<li><strong><a href="http://www.wordimpressed.com/demos/jflowplus-v2/" title="Visit the jFlow Plus demo">Visit the Demo</a></strong></li>
<li>Start with the demo CSS and style to your liking</li>
<li>If you&#8217;re stuck, read the documentation</li>
<li>Start with the basic functionality and then modify to suit your needs</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/plugins/jflow-plus-v2-demo-documentation-download/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How to Remove Paragraph Tags Around the WordPress Category Description</title>
		<link>http://www.wordimpressed.com/wordpress/how-to-remove-paragraph-tags-around-the-wordpress-category-description/</link>
		<comments>http://www.wordimpressed.com/wordpress/how-to-remove-paragraph-tags-around-the-wordpress-category-description/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 08:04:06 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[category_description()]]></category>
		<category><![CDATA[functions.php]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1113</guid>
		<description><![CDATA[If you need to use the category_decription() function without the included paragraph tags, here's how!]]></description>
			<content:encoded><![CDATA[<p>Sometimes you may need to use the category_description() WordPress function to output plain text, without the included paragraph tags.</p>
<h2>Remove the Paragraph Tags: Add this to your theme&#8217;s function.php file:</h2>
<p>This simple filter will remove the wpautop function from running on the term description. Simply add this snippet to the bottom of your theme&#8217;s function.php file and save.</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;">'term_description'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'wpautop'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Before:</h3>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;My Category Description&lt;/p&gt;</pre></div></div>

<h3>After:</h3>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">My Category Description</pre></div></div>

<p>Here&#8217;s a link to the WP forum thread revealing this simple and effective filter: <a href="http://wordpress.org/support/topic/get-rid-of-p-tags-in-category_description?replies=15" title="View the original solution of WordPress forum">WP Forum Thread</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/wordpress/how-to-remove-paragraph-tags-around-the-wordpress-category-description/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Sign Up for Google&#8217;s New Page Speed Service</title>
		<link>http://www.wordimpressed.com/coding/how-to-sign-up-for-googles-new-page-speed-service/</link>
		<comments>http://www.wordimpressed.com/coding/how-to-sign-up-for-googles-new-page-speed-service/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 16:26:25 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1096</guid>
		<description><![CDATA[Before you can start using this new service you'll have to get invited.  Here's how to request access to Google's Page Speed Service.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/google-page-speed-service-icon1-150x150.jpg" alt="Google Page Speed" title="google-page-speed-service-icon" width="150" height="150" class="alignright size-thumbnail wp-image-1102" />Google loves fast websites and they&#8217;re offering to make your websites faster for free by using their brand new <strong><a href="http://code.google.com/speed/pss/index.html" title="Google's Page Speed Service" target="_blank">Page Speed Service</a></strong>.  </p>
<h2>Sign Up for an Invite</h2>
<p>Google is limiting the roll out of this new service to an untold number of webmasters. <strong><a href="https://docs.google.com/a/flankmarketing.com/spreadsheet/viewform?hl=en_US&#038;formkey=dDdjcmNBZFZsX2c0SkJPQnR3aGdnd0E6MQ&#038;ifq" title="Sign Up for Google's Page Speed Service" target="_blank">Using this sign up form</a></strong> you can request access to Page Speed Service and will be invited by Google to use this brand new service. </p>
<p>Here&#8217;s an image of the Page Speed Dashboard:</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/page-speed-dashboard.png" alt="Google Page Speed Dashboard" title="page-speed-dashboard" width="580" height="499" class="alignnone size-full wp-image-1099" /></p>
<p>Below is a screenshot of the Rewrite options panel:</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/google-page-speed-service.png" alt="Google&#039;s Page Speed Service" title="google-page-speed-service" width="580" height="350" class="alignnone size-full wp-image-1097" /></p>
<h2>How it Works</h2>
<p>Once you get to start using the Page Speed Service you will log into your Google APIs console, provite the domain of your website, verify ownership, set up the <a href="http://code.google.com/speed/pss/docs/refdomain.html" target="_blank">reference domain</a> and change your site&#8217;s DNS CNAME.</p>
<p>That&#8217;s an earful, but Google makes the process pretty simple and it looks like they have pretty <a href="http://code.google.com/speed/pss/docs/overview.html" title="Google Page Speed Overview" target="_blank">good documentation</a>.</p>
<h3>Where&#8217;s Your Invite?</h3>
<p>I&#8217;m still waiting for my invite, I&#8217;ll update here when I get one.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/coding/how-to-sign-up-for-googles-new-page-speed-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Time-based Voting Restrictions on GD Star Rating Plugin</title>
		<link>http://www.wordimpressed.com/wordpress/enable-time-based-voting-restrictions-on-gd-star-rating-plugin/</link>
		<comments>http://www.wordimpressed.com/wordpress/enable-time-based-voting-restrictions-on-gd-star-rating-plugin/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 07:27:40 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1082</guid>
		<description><![CDATA[Are you using the GD Star Rating plugin? Learn how to restrict voting by time-range.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/gd-star-rating-150x150.png" alt="" title="gd-star-rating" width="150" height="150" class="alignright size-thumbnail wp-image-1087" />The GD Star Rating plugin is a very powerful WordPress plugin, albeit a bit confusing.  It allows you to insert rating and voting widgets into your pages and posts very easily.  But what if you want to allows users to vote or rate on something once every day?  Check it out:</p>
<h2>Problem: No Vote or Rating Expirations</h2>
<p>Out of the box, you are allowed to restrict voting by IP logging or cookies as see in the image below:</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/gd-star-restrictions.png" alt="GD Star Rating voting restriction settings" title="gd-star-restrictions" width="481" height="126" class="alignnone size-full wp-image-1083" /></p>
<p>These setting are not exactly what we need, since there&#8217;s no option to expire votes we will need to do a little bit more.  First, uncheck the options <em>&#8220;Use logged data (IP) to prevent duplicate voting.&#8221;</em> and <em>&#8220;Use cookies to prevent duplicate voting.&#8221;</em> like so:</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/uncheck-gd-star.png" alt="Uncheck GD Star Rating restrictions" title="uncheck-gd-star" width="506" height="130" class="alignnone size-full wp-image-1084" /></p>
<p>No with these current options users will be able to rate and vote non-stop.  Once could very easily rig up a macro and mess up some ratings. Obviously we don&#8217;t want this so let&#8217;s use cookies to prevent this from happening.</p>
<h2>Solution: Use jQuery and Cookies to Restrict Voting</h2>
<p>Have you heard of the <a href="http://plugins.jquery.com/project/Cookie" title="jQuery Cookie Plugin" target="_blank">jQuery Cookies plugin</a>?  It&#8217;s really good and lightweight.  </p>
<h3>Download the Cookies plugin and Insert it in your head</h3>
<p><a href="https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js" title="Raw jQuery Cookies Plugin File" target="_blank">Download the jQuery Cookies plugin</a>; once that&#8217;s done insert it into the head of your website:</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/jquery-cookies-plugin-580x138.png" alt="jQuery Cookies Plugin" title="jquery-cookies-plugin" width="580" height="138" class="alignnone size-medium wp-image-1085" /></p>
<h3>Code the Function to Restrict Voting 24-Hours</h3>
<p>Now that we have our Cookies plugin (along with jQuery of course) ready for use on our website we can code out a function to <strong>only allow people to vote once per day</strong>.  Here&#8217;s the function I&#8217;m using:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #006600; font-style: italic;">//if our cookie is present display you have voted text</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>jQuery.<span style="color: #660066;">cookie</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'vote_cookie'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #006600; font-style: italic;">//when gd star rating is clicked do function to set cookie</span>
        jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gdt-starrating'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #006600; font-style: italic;">//set cookie 			</span>
            jQuery.<span style="color: #660066;">cookie</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'vote_cookie'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'closed'</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>
                expires<span style="color: #339933;">:</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">,</span>
                path<span style="color: #339933;">:</span> <span style="color: #3366CC;">'/'</span><span style="color: #339933;">,</span>
                domain<span style="color: #339933;">:</span> <span style="color: #3366CC;">'yourdomain.com'</span>
            <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">//else the cookie is already set	</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #006600; font-style: italic;">//fade out the ratings and display voted message</span>
        jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gdt-starrating'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeOut</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;fast&quot;</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #006600; font-style: italic;">//append voted message</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">//append voted message to parent container</span>
        jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gdthumb'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;p class=&quot;vote_msg&quot;&gt;Thanks for Voting. Come back tomorrow!&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">//slide down the vote message</span>
        jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.vote_msg'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">slideDown</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;fast&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Check out my <strong>line-by-line notes above</strong> and <em>leave a comment below if you have any code-related questions</em>.  For the cookie&#8217;s lifetime or &#8220;expires&#8221; parameter: You can define the lifetime of the cookie using a number which will be interpreted as days from time of creation. If left out, the cookie is a session cookie.</p>
<p>Please note: Depending on the <strong>GD Star Rating Template</strong> you are using, your <em>jQuery selector</em> could be different.  Also, this method is not fool-proof.  Users will still be able to clear their browser&#8217;s cookies and vote.</p>
<h2>Live Working Demo</h2>
<p>Update: Sorry the working update has been taken down :[  Please use the comment section below to post your questions.</p>
<p>To take a look at the<strong> GD Star Rating voting restriction in action</strong> check out the projects page over at <del datetime="2011-11-29T07:43:17+00:00"><a href="#" rel="nofollow" title="Live GD Star Rating voting restriction in action demo" target="_blank">The Modern Gypsies&#8217; website</a></del>.</p>
<h2>Future Development</h2>
<p>The best way to accomplish the voting restriction would be to do it via server-side with PHP and hooking into the function of the plugin itself.  Fortunatly, for my needs this was not necessary but it may be for others with higher traffic and to ensure rating integrity.</p>
<p>Hopefully the plugin author will include this as an option in upcoming releases of the GD Star Rating plugin. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/wordpress/enable-time-based-voting-restrictions-on-gd-star-rating-plugin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Delay Windows Opening on Click with jQuery</title>
		<link>http://www.wordimpressed.com/coding/how-to-delay-windows-opening-on-click-with-jquery/</link>
		<comments>http://www.wordimpressed.com/coding/how-to-delay-windows-opening-on-click-with-jquery/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 06:32:54 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1065</guid>
		<description><![CDATA[Need to delay the opening of a browser window by a certain amount of time? Here's how!]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/browser-popup-150x150.png" alt="Use jQuery to delay window open" title="browser-popup" width="150" height="150" class="alignright size-thumbnail wp-image-1069" />Sometimes you may have an instance where you need to delay the opening of a new browser window when a link or button is clicked.  With JavaScript and jQuery this is very easy to do. </p>
<h2>Using the Click and setTimeout Methods to Open Links</h2>
<p>Using a bit of jQuery and JavaScript&#8217;s methods we can achieve a simple timer to open links.</p>
<h3>See it in Action</h3>
<p>Want to check it out?  Click <a href="#" title="Click to open Demo link" class="delay1-demo">HERE</a> and watch as the link opens after 3-seconds.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.myselector'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>	
      setTimeout<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	window.<span style="color: #000066;">open</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;http://wordimpressed.com&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1000</span> <span style="color: #009966; font-style: italic;">/* time to delay */</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Code Explanation</h3>
<p>What the code above is doing is utilizing jQuery <a href="http://api.jquery.com/click/" title="The jQuery .click() method" target="_blank">.click()</a> method to fire off a function once the link or button with the class &#8220;.myselector&#8221;.  Once this function fires the <a href="http://www.w3schools.com/jsref/met_win_settimeout.asp" title="the setTimeout method on w3 Schools" target="_blank">setTimeout </a>method then calls a function after a specified number of milliseconds.  </p>
<p>You may find that the number of seconds can vary depending on the user&#8217;s computer processing power and how busy the client (browser) is during at the time the function fires.  Regardless, the this method should meet the needs of most developers for opening new browser windows after a specified time.</p>
<h2>Using the jQuery .delay() Method for Animations and Effects</h2>
<p>The code below will not open link in new windows, but it is useful for delaying jQuery animations and effects:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.first&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">slideUp</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">delay</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">800</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeIn</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">400</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>See it in Action</h3>
<p>Click <a href="#" title="Click to view jQuery Delay Demo" class="delay2-demo">here</a> to slide up the picture below after 3-seconds.</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/homeless-coder.jpg" id="slideUp" /></p>
<h3>Code Explanation</h3>
<p>The <a href="http://api.jquery.com/delay/" title="The jQuery .delay() method" target="_blank">.delay()</a> method is great for timing animations and additional methods to a certain time.  In this example we use the .delay() method to delay the .slideUp() method on our demo image for a specified number of milliseconds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/coding/how-to-delay-windows-opening-on-click-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test Yourself: Beginners-Level WordPress Quiz</title>
		<link>http://www.wordimpressed.com/wordpress/beginners-level-wordpress-quiz/</link>
		<comments>http://www.wordimpressed.com/wordpress/beginners-level-wordpress-quiz/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 07:55:00 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1046</guid>
		<description><![CDATA[Test your basic WordPress knowledge with this quick and fun beginners-level quiz.  ]]></description>
			<content:encoded><![CDATA[<div id='quiz-container'></div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/wordpress/beginners-level-wordpress-quiz/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to Enable Facebook&#8217;s New Chat</title>
		<link>http://www.wordimpressed.com/social-networks/how-to-enable-facebooks-new-chat/</link>
		<comments>http://www.wordimpressed.com/social-networks/how-to-enable-facebooks-new-chat/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 06:15:10 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=1040</guid>
		<description><![CDATA[Are you using the latest version of Facebook's chat feature?  Learn how to enable the new sidebar chat feature.]]></description>
			<content:encoded><![CDATA[<p>Facebook recently revamped their message system and among additions like video messages, there is the ability to extend the chat to the full-height of your browser window.</p>
<h2>Enable Facebook Sidebar Chat</h2>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/sidebar-facebook-messages.png" alt="Facebook Sidebar Prompt" title="sidebar-facebook-messages" width="184" height="388" class="alignright size-full wp-image-1041" />Once you log into Facebook, go to your &#8220;News Feed&#8221; and ensure your browser is maximized.  If you have a large enough monitor you should see the sidebar Chat grayed out with the following invite message:</p>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/facebook-message-try.png" alt="Try the New Facebook Sidebar Chat" title="facebook-message-try" width="175" height="149" class="alignnone size-full wp-image-1042" /></p>
<p>Once you click the &#8220;Try it now&#8221; button you will immediately be able to message your friends that you interact with the most.  </p>
<p>Still lost?  Check out the Facebook&#8217;s <a href="http://www.facebook.com/help/?page=194010440647624" title="Learn how to use the Facebook Chat Sidebar">Using the Sidebar</a> for useful help information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/social-networks/how-to-enable-facebooks-new-chat/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top Essential Plugins for WordPress Websites</title>
		<link>http://www.wordimpressed.com/plugins/top-essential-plugins-for-wordpress-websites/</link>
		<comments>http://www.wordimpressed.com/plugins/top-essential-plugins-for-wordpress-websites/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 04:41:31 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wordimpressed.com/?p=980</guid>
		<description><![CDATA[Plugins make your website better.  Read this list of essential plugins if you're planning on using WordPress or are currently on the WordPress platform.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/plugins.jpg" alt="Top WordPress Plugins" title="plugins" width="580" height="250" class="alignnone size-full wp-image-1035" style="border:none;"/></p>
<p>WordPress plugins are great for a variety of reasons.  First, they allow you to add tons of additional functionality to your website with out having to do a lot of custom coding.  Second, all plugins in the WordPress plugin directory are free.  And lastly, you don&#8217;t have to be a developer to leverage many of their uses.  </p>
<p>After building, maintaining and curating literally hundreds of WordPress websites, I bring to you my list of <strong>essential plugins for your WordPress install</strong>:</p>
<h2>Top SEO WordPress Plugins</h2>
<p>Search Engine Optimization is important for any WordPress website.  Whether you know much about it or not, you should be at least doing your part to add the appropriate meta information to your posts and pages.  Plugins make SEO for your website easy.  Here&#8217;s some of the best out there.</p>
<h3><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" rel="nofollow" title="All in One SEO Pack" target="_blank">All in One SEO Pack</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/aioseop-logo.jpg" alt="All in One SEO Pack - Logo" title="aioseop-logo" width="580" height="250" class="alignnone size-full wp-image-1010" /></p>
<p>AIOSEOP is one of the most popular plugins in the WordPress plugin directory.  At it&#8217;s core, it&#8217;s a very simple plugin that allows you to add </p>
<h3><a href="http://wordpress.org/extend/plugins/head-cleaner/" rel="nofollow" title="Head Cleaner" target="_blank">Head Cleaner</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/head-cleaner.jpg" alt="Head Cleaner on WordPress Plugins Directory" title="head-cleaner" width="580" height="250" class="alignnone size-full wp-image-1008" /></p>
<p>The problem with using a bunch of plugins is that many of them include javascript and CSS files on your website which drag down load speed and in turn upsets Google as your load speed is affected negatively.  This plugin allows you to filter out those scripts and control which plugins are including scripts into your head.  </p>
<p>As far as I know this is the best plugin in its class, but I still need more.  It&#8217;s OK for what it does, but could be much better by providing a better UI, fully explain the options available and allow for combing of scripts.  Despite this, I always recommend using this plugin due to the need to remove these scripts that otherwise would have to be manually filtered.</p>
<h3><a href="http://wordpress.org/extend/plugins/platinum-seo-pack/" title="Platinum SEO Pack" rel="nofollow" target="_blank">Platinum SEO Pack</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/platinum-seo-pack.jpg" alt="Platinum SEO Pack" title="platinum-seo-pack" width="580" height="250" class="alignnone size-full wp-image-1011" /></p>
<p>No quiet as popular, and seeminly with a lot of &#8216;borrowed&#8217; code from AIOSEOP is &#8220;Platinum SEO Pack&#8221;.  This plugin brings some added functionality that may be critical to you and lacking in AIOSEOP.  If AIOSEOP lacks your needs, perhaps taking a look at this plugin would be to your benefit.  For those already on AIOSEOP, this plugin will import all your data.</p>
<h3><a href="http://wordpress.org/extend/plugins/all-in-one-webmaster/" title="All in One Webmaster" rel="nofollow" target="_blank">All in One Webmaster</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/all-in-one-webmaster.jpg" alt="All in one Webmaster" title="all-in-one-webmaster" width="580" height="250" class="alignnone size-full wp-image-1012" /></p>
<p>Have a ton of tacking codes to put on your site?  This plugin will help you insert just about any analytics code from Bing to Google, Yahoo to your very own custom application.  Check it out.  Side note:  This plugin used to have a very annoying link it added to your site&#8217;s footer but in the latest versions the author has seemed to removed this.  Thanks be to him.</p>
<h3><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" title="Google XML Sitemaps" rel="nofollow" target="_blank">Google XML Sitemaps</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/google-xml-sitemaps.jpg" alt="Google XML Sitemaps Screenshot" title="google-xml-sitemaps" width="580" height="250" class="alignnone size-full wp-image-1015" /></p>
<p>Make it easier for Google to crawl your site with this plugin.  Once of the best plugins for creating sitemaps out there, probably the best.  As an added bonus, this plugin will inform all the top search engines that it has just created a new sitemap. </p>
<h2>Top Custom Post Types Plugins</h2>
<p>WP 3.0&#8242;s Custom Post Type capability allows ever-increasing capabilities to the platform.  Seemingly creating custom post types can be complicated with a lot of heavy development&#8230; guess again.  Plugins bring a no-code approach to allow non-developers to leverage this awesome new addition.</p>
<h3><a href="http://wordpress.org/extend/plugins/custom-post-type-ui/" title="Custom Post Types UI" rel="nofollow" target="_blank">Custom Post Types UI</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/custom-post-type-ui.jpg" alt="Custom Post Type UI" title="custom-post-type-ui" width="580" height="250" class="alignnone size-full wp-image-1016" /></p>
<p>Create custom post types with out being a developer.  This plugin provides users with an easy to use and intuitive UI to create custom post types and taxonomies.  I highly recommend this for developers and non-developers alike for taking full control of their site&#8217;s custom post types.</p>
<h3><a href="http://wordpress.org/extend/plugins/custom-post-type-order/" title="Custom Post Type Order" rel="nofollow" target="_blank">Custom Post Type Order</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/custom-post-type-ordering.jpg" alt="Custom Post Type Order" title="custom-post-type-ordering" width="580" height="250" class="alignnone size-full wp-image-1019" /></p>
<p>The free version of this plugin is incredibly handy for maintaining the ordering of custom post types with an easy to use drag-and-drop user interface.  The premium version allows you to custom order by taxonomy, bringing even more flexibility in the way you display you custom post types.  Highly recommended for all your custom post type ordering needs.</p>
<h2>Enhance WordPress&#8217; Capabilities</h2>
<p>Although WordPress is already an incredibly feature-rich platform for a CMS or blog, plugin add to it&#8217;s robustness.  The following plugins will help you extend WordPress to your specific needs by providing enhancements not present in it&#8217;s out of the box installation.</p>
<h3><a href="http://wordpress.org/extend/plugins/custom-field-template/" title="Custom Field Templates rel="nofollow" target="_blank">Custom Field Templates</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/custom-field-templates.jpg" alt="Custom Field Templates" title="custom-field-templates" width="580" height="250" class="alignnone size-full wp-image-1020" /></p>
<p>Make WordPress into the CMS you always wanted it to be.  This plugin allows you to customize WordPress as you&#8217;ve never before.  Truly leverage the use of custom fields through this plugin and build a website that&#8217;s both easy-to-use and simple to manage. </p>
<p>I can&#8217;t say enough about this plugin.  It has gobs of functionality such as full TinyMCE support for textareas, file upload and delete, custom PHP codes to set values, user access level per field.  Truly a great enhancement to WordPress and one of my favorites.</p>
<h3><a href="http://wordpress.org/extend/plugins/search-everything/" title="Search Everything" target="_blank" rel="nofollow">Search Everything</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/search-everything.jpg" alt="Search Everything" title="search-everything" width="580" height="250" class="alignnone size-full wp-image-1021" /></p>
<p>One of the main complaints I always hear about WordPress is regarding its search capabilities.  Search Everything brings to the table what WP&#8217;s core left in the kitchen.  Search term highlighting, filtering and include/exclude options provide you a way to serve up results more accurately.</p>
<h2>Top WordPress Form Plugins</h2>
<p>Forms are necessary are nearly all websites. They provide you a way to interact with users and store their data within for tracking and reporting.  If you&#8217;re not a developer and don&#8217;t want to custom code your own forms, plugins are the next best thing and most likely your best option.</p>
<h3><a href="http://www.deliciousdays.com/cforms-plugin/" title="cForms II" target="_blank" rel="nofollow">cForms II</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/cforms.jpg" alt="cForms II" title="cforms" width="580" height="250" class="alignnone size-full wp-image-1022" /></p>
<p>The definitive <em>free forms plugin</em> that allows you to do what all the paid form plugins do and more.  Create advanced forms using a very to use UI, complete with tracking, data-handling and multi-part form creation.  For anyone who&#8217;s looking to create forms as simple as a contact form or as advanced as a multi-page wizard form.</p>
<h2>Widget, Widgets, and More Widgets</h2>
<p>We all know and love those draggable widgets.  They provide a big punch in a little package, don&#8217;t they?  Here&#8217;s some of the best you can use for your site to fill up that sidebar or display in that perfect widget-zone.</p>
<h3><a href="http://wordpress.org/extend/plugins/twitter-widget-pro/" title="Twitter Widget Pro" target="_blank" rel="nofollow">Twitter Widget Pro</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/twitter-widget-pro.jpg" alt="Twitter Widget Pro" title="twitter-widget-pro" width="580" height="250" class="alignnone size-full wp-image-1023" /></p>
<p>If you&#8217;re in need of displaying a twitter feed on your site, this is the plugin for you.  Once you activate the plugin, simply drop it in your widget-zone of choice to start display your twitter account.  Be sure to increase the time of response to twitter from the default of 2 seconds to reduce time out errors.</p>
<h3><a href="http://wordpress.org/extend/plugins/advanced-text-widget/" title="Advanced Text Widget" target="_blank" rel="nofollow">Advanced Text Widget</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/advanced-text-widget.jpg" alt="Advanced Text Widget" title="advanced-text-widget" width="580" height="250" class="alignnone size-full wp-image-1024" /></p>
<p>This plugin allows you to execute PHP code within your widgets and only display the title output when you need to.  Also, you can only display the widget on pages or posts that you want to display them using page IDs.  What the default WordPress text widget always wished it had.  </p>
<h2>Comments</h2>
<p>Comments are essential to any blog.  You need to provide your users a way to react to what they&#8217;re reading.  I suggest adding the ability to comment through social media to increase exposure.  Plugins will allows you to fully leverage this new form of comments.</p>
<h3><a href="http://wordpress.org/extend/plugins/disqus-comment-system/" title="Disqus Comment System for WordPress" target="_blank" rel="nofollow">Disqus</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/disqus-comments.jpg" alt="Disqus Comment System for WordPress" title="disqus-comments" width="580" height="250" class="alignnone size-full wp-image-1027" /></p>
<p>My favorite commenting platform.  Full support for WordPress and backs up your comments in the normal WordPress comment systems.  Great customizable options and additional features, not to mention premium spam protection. </p>
<h3><a href="http://wordpress.org/extend/plugins/intensedebate/" title="IntenseDebate Comments for WordPress" target="_blank" rel="nofollow">IntenseDebate</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/intensedebate-comments.jpg" alt="IntenseDebate Comments for WordPress" title="intensedebate-comments" width="580" height="250" class="alignnone size-full wp-image-1028" /></p>
<p>Right on the heels of Disqus is IntenseDebate.  Very many of the same features, but lacking the same usability in my option.  Despite this, IntenseDebate has experienced an increasing WordPress user base. </p>
<h3><a href="http://wordpress.org/extend/plugins/akismet/" title="Akismet Spam Blocker" target="_blank" rel="nofollow">Akismet</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/akismet-anti-spam.jpg" alt="Akismet - Anti-SPAM" title="akismet-anti-spam" width="580" height="250" class="alignnone size-full wp-image-1029" /></p>
<p>There&#8217;s a reason why they include this plugin in the WP core.  You&#8217;ll get spammed, and Akismet will give you the sword you need to fend off the army of bots.  Very accurate, free and great reporting.  Use it and love it.</p>
<h2>Top Photo Display and Gallery Plugins for WordPress</h2>
<p>If you&#8217;re a photographer or have a need to display galleries then WordPress is your perfect system.  It&#8217;s already got a built-in gallery feature that&#8217;s super flexible and may suit your needs, but if you&#8217;re looking for a little bit more then we&#8217;ve got your remedy.  </p>
<h3><a href="http://wordpress.org/extend/plugins/nextgen-gallery/" title="NextGen Gallery" target="_blank" rel="nofollow">NextGen Gallery</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/next-gen.jpg" alt="NextGEN Gallery for WordPress" title="next-gen" width="580" height="250" class="alignnone size-full wp-image-1030" /></p>
<p>NextGen is the best gallery creation, album management and picture display plugin for WordPress hands down.  It&#8217;s extremely well developed and I still can&#8217;t believe it&#8217;s free. Need there be more?</p>
<p>This Plugin goes above and beyond to allow you to share you images with the world through your WordPress website.  Some highlights are a built-in uploader, thumbnail resizer and gallery/album management utility, several options for displaying your galleries (lightbox, shadowbox, prettyPhoto) and there&#8217;s actually a number of plugins to enhance this plugin.  If you&#8217;re looking for the best WordPress gallery plugin, look no futher&#8230; NextGen gallery is what you need.</p>
<h3><a href="http://wordpress.org/extend/plugins/jquery-colorbox/" title="jQuery Colorbox" target="_blank" rel="nofollow">jQuery Colorbox</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/jquery-colorbox.jpg" alt="jQuery Colorbox" title="jquery-colorbox" width="580" height="250" class="alignnone size-full wp-image-1034" /></p>
<p>Colorbox is a solid modal view plugin that provides a fluid and intuive way to view thumbnails.  Easily integrates with WordPress and NextGen, this plugin also allows your to display YouTube and embedded object as well!</p>
<h2>Speed Up WordPress with Plugins</h2>
<p>Need speed?  Caching your website is your first goto.  Want to take it to the next level?  How about a CDN, or Content Delivery Network.   Although both of these may sound complicated, plugins make their use and setup that much easier!</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank" title="WP Super Cache" rel="nofollow">WP Super Cache</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/wp-super-cache.jpg" alt="WP Super Cache" title="wp-super-cache" width="580" height="250" class="alignnone size-full wp-image-1033" /></p>
<p>The most popular caching plugin to date, WP Super Cache has more than 2.3 million download an counting.  Once you activate this plugin, it&#8217;s not hard to find out why.  It&#8217;s super easy to use and really speeds up your site to please not only you and your users, but Google and other search engines as well.</p>
<h3><a href="http://wordpress.org/extend/plugins/w3-total-cache/" title="WP Total Cache" target="_blank" rel="nofollow">WP Total Cache</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/wp-total-cache.jpg" alt="WP Total Cache - Speed Up WordPress" title="wp-total-cache" width="580" height="250" class="alignnone size-full wp-image-1032" /></p>
<p>A close second in the WP Cache realm is WP Total Cache.  An excellent plugin for caching that provides almost too complex options to the user.  That&#8217;s why I believe it&#8217;s not as popular, it&#8217;s almost too useful.  The development of this plugin is spot-on, with many of WP&#8217;s core developers working on the project.  Check it out, if you&#8217;re not satisfied with WP Super Cache then WP Total Cache most likely is for you.</p>
<h2>WordPress Utilities</h2>
<p>Sometimes you may need a few tools to get the job done.</p>
<h3><a href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" title="WordPress Regenerate Thumbnails Plugin" target="_blank" rel="nofollow">Regenerate Thumbnails</a></h3>
<p><img src="http://www.wordimpressed.com/wp-content/uploads/2011/07/regenerate-thumbnails.jpg" alt="WordPress Regenerate Thumbnails Plugin" title="regenerate-thumbnails" width="580" height="250" class="alignnone size-full wp-image-1031" /></p>
<p>Let&#8217;s say you decide to change you image proportions and need to quickly resize all your additional images.  Don&#8217;t even think about doing this manually, you&#8217;ll be resizing all day depending on the size of your website.  This plugin quickly resizes your thumbnails to the current proportions specified in your <em>Settings > Media</em> panel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordimpressed.com/plugins/top-essential-plugins-for-wordpress-websites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.wordimpressed.com @ 2012-02-22 23:08:46 by W3 Total Cache -->
