<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>KWS Blog</title>
	
	<link>http://seodenver.com</link>
	<description>Websites designed and optimized for results.</description>
	<lastBuildDate>Wed, 16 May 2012 18:08:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DenverSEO" /><feedburner:info uri="denverseo" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Enable Shortcodes for Gravity Forms Field Descriptions</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/REpopR4Qic4/</link>
		<comments>http://seodenver.com/enable-shortcodes-gravity-forms-field-descriptions/#comments</comments>
		<pubDate>Tue, 08 May 2012 23:14:17 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Gravity Forms]]></category>

		<guid isPermaLink="false">http://seodenver.com/?p=4688</guid>
		<description><![CDATA[To enable shortcodes inside your Gravity Forms form description, field labels and descriptions, you need to add the following code to your theme&#8217;s functions.php file: add_filter(&#039;gform_pre_render&#039;, &#039;walker_do_shortcode_gform_description&#039;, 10, 2); function do_shortcode_gform_description(&#38;$item, $key)  $item = do_shortcode($item);  function walker_do_shortcode_gform_description($form, $ajax) &#8230; <a href="http://seodenver.com/enable-shortcodes-gravity-forms-field-descriptions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To enable shortcodes inside your <a href="http://formplugin.com">Gravity Forms</a> form description, field labels and descriptions, you need to add the following code to your theme&#8217;s <code>functions.php</code> file:</p>
<pre>
add_filter(&#039;gform_pre_render&#039;, &#039;walker_do_shortcode_gform_description&#039;, 10, 2);

function do_shortcode_gform_description(&amp;$item, $key) {
	$item = do_shortcode($item);
}

function walker_do_shortcode_gform_description($form, $ajax) {

	$form&#091;&#039;description&#039;&#093; = do_shortcode($form&#091;&#039;description&#039;&#093;);
	array_walk_recursive($form&#091;&#039;fields&#039;&#093;, &#039;do_shortcode_gform_description&#039;);

	return $form;
}
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=REpopR4Qic4:4byeDvLopx4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=REpopR4Qic4:4byeDvLopx4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=REpopR4Qic4:4byeDvLopx4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=REpopR4Qic4:4byeDvLopx4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=REpopR4Qic4:4byeDvLopx4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=REpopR4Qic4:4byeDvLopx4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/REpopR4Qic4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/enable-shortcodes-gravity-forms-field-descriptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://seodenver.com/enable-shortcodes-gravity-forms-field-descriptions/</feedburner:origLink></item>
		<item>
		<title>Merge Settings Into an Array in WordPress</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/Qvgwkqtsj3o/</link>
		<comments>http://seodenver.com/merge-settings-array-wordpress/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 17:01:15 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[shortcode_atts]]></category>
		<category><![CDATA[WordPress Functions]]></category>
		<category><![CDATA[wp_parse_args]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4620</guid>
		<description><![CDATA[I found people are coming to this site (to an unrelated article) looking for a way to merge settings into an array. You&#8217;re looking for wp_parse_args() The main function for WordPress to do this is wp_parse_args(). You likely want this &#8230; <a href="http://seodenver.com/merge-settings-array-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.seodenver.com/wp-content/uploads/2012/03/arrays-merging-e1331830795996.jpg"><img class="alignnone size-full wp-image-4621" title="Arrays Merging" src="http://www.seodenver.com/wp-content/uploads/2012/03/arrays-merging-e1331830795996.jpg" alt="Arrays Merging" width="640" height="212" /></a></p>
<p>I found people are coming to this site (to an unrelated article) looking for a way to merge settings into an array.</p>
<h2>You&#8217;re looking for <code>wp_parse_args()</code></h2>
<p>The main function for WordPress to do this is <code>wp_parse_args()</code>. You likely want this function.</p>
<p><a href="http://codex.wordpress.org/Function_Reference/wp_parse_args">Learn more about <code>wp_parse_args()</code></a></p>
<h3>Also consider <code>shortcode_atts()</code></h3>
<p>This is used for parsing shortcode options. It only supports defined arguments.</p>
<p><a href="http://codex.wordpress.org/Function_Reference/shortcode_atts">Learn more about <code>shortcode_atts()</code></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=Qvgwkqtsj3o:2lowsz3AR_4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=Qvgwkqtsj3o:2lowsz3AR_4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=Qvgwkqtsj3o:2lowsz3AR_4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=Qvgwkqtsj3o:2lowsz3AR_4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=Qvgwkqtsj3o:2lowsz3AR_4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=Qvgwkqtsj3o:2lowsz3AR_4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/Qvgwkqtsj3o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/merge-settings-array-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://seodenver.com/merge-settings-array-wordpress/</feedburner:origLink></item>
		<item>
		<title>Mitt Romney’s Compressed Images</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/6moUU7exocY/</link>
		<comments>http://seodenver.com/mitt-romneys-compressed-images/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 00:08:02 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[load time]]></category>
		<category><![CDATA[Mitt Romney]]></category>
		<category><![CDATA[Rick Santorum]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4611</guid>
		<description><![CDATA[Mitt, don&#8217;t skimp on image optimization I just visited Mitt Romney&#8217;s website for the first time and noticed right away that his site looked cheap because his button images had been so compressed for load time.   For comparison, here are some &#8230; <a href="http://seodenver.com/mitt-romneys-compressed-images/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Mitt, don&#8217;t skimp on image optimization</h2>
<p>I just visited <a href="http://www.mittromney.com/">Mitt Romney&#8217;s website</a> for the first time and noticed right away that <strong>his site looked cheap</strong> because his button images had been so compressed for load time.</p>
<p><a href="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.55.32-PM.jpg"><img title="Screen Shot 2012-03-14 at 5.55.32 PM" src="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.55.32-PM.jpg" alt="" width="236" height="164" /></a> <a href="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.55.41-PM.jpg"><img class="alignnone size-full wp-image-4614" title="Screen Shot 2012-03-14 at 5.55.41 PM" src="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.55.41-PM.jpg" alt="" width="324" height="171" /></a></p>
<p>For comparison, here are some similar boxes on <a href="http://www.barackobama.com/">BarackObama.com</a></p>
<p><a href="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.57.27-PM.jpg"><img class="alignnone size-full wp-image-4612" title="Screen Shot 2012-03-14 at 5.57.27 PM" src="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.57.27-PM.jpg" alt="" width="266" height="169" /></a> <a href="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.57.24-PM.jpg"><img class="alignnone size-full wp-image-4613" title="Screen Shot 2012-03-14 at 5.57.24 PM" src="http://www.seodenver.com/wp-content/uploads/2012/03/Screen-Shot-2012-03-14-at-5.57.24-PM.jpg" alt="" width="239" height="125" /></a></p>
<h3>Look for yourself</h3>
<p>I don&#8217;t think the affect of the bad quality comes across in these pictures. I encourage you to compare and contrast.</p>
<ul>
<li><a href="http://www.mittromney.com/">MittRomney.com</a></li>
<li><a href="http://www.barackobama.com/">BarackObama.com</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=6moUU7exocY:h4KONQm4y44:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=6moUU7exocY:h4KONQm4y44:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=6moUU7exocY:h4KONQm4y44:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=6moUU7exocY:h4KONQm4y44:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=6moUU7exocY:h4KONQm4y44:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=6moUU7exocY:h4KONQm4y44:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/6moUU7exocY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/mitt-romneys-compressed-images/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://seodenver.com/mitt-romneys-compressed-images/</feedburner:origLink></item>
		<item>
		<title>Simple Way to Get Plugin Status in WordPress</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/YGAvU5EJYgE/</link>
		<comments>http://seodenver.com/simple-plugin-status-wordpress/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 22:32:33 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[is_plugin_active]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[validate_plugin]]></category>
		<category><![CDATA[WordPress Functions]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4572</guid>
		<description><![CDATA[I have previously written on how to determine if a widget is active. This is helpful for widgets, but not for plugins. WordPress has a couple of different functions that help you determine plugin status. They are both located in &#8230; <a href="http://seodenver.com/simple-plugin-status-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.seodenver.com/wp-content/uploads/2012/02/1233069_57721303-e1329517866882.jpg"><img class="alignnone size-large wp-image-4573" title="Is the plugin active? This volcano is." src="http://www.seodenver.com/wp-content/uploads/2012/02/is-the-plugin-active-this-volcano-is.-1024x407.jpg" alt="Active plugin volcano." width="640" height="254" /></a></p>
<p>I have previously written on <a href="http://www.seodenver.com/how-to-tell-if-your-wordpress-widget-is-activated/">how to determine if a widget is active</a>. This is helpful for widgets, but not for plugins.</p>
<p>WordPress has a couple of different functions that help you determine plugin status. They are both located in <a href="http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/plugin.php">wp-includes/plugin.php</a></p>
<ul>
<li><code>validate_plugin()</code> spits out an error if the plugin file does not  exist or has an invalid header. This lets you know that the file is there.</li>
<li><code>is_plugin_inactive()</code> lets you know if the plugin is not active (using the <a href="http://codex.wordpress.org/Function_Reference/is_plugin_active"><code>is_plugin_active()</code></a> function)</li>
</ul>
<h2>A function to get plugin status</h2>
<p>Using these two functions, I put together a one-size-fits-all function <code>get_plugin_status()</code>.<span id="more-4572"></span></p>
<p>The function returns <code>1</code> if the plugin is active; <code>2</code> if the plugin is inactive; <code>0</code> if the plugin is not installed.</p>
<pre>/**
 * Check the status of a plugin.
 *
 * @param string $plugin Base plugin path from plugins directory.
 * @return int 1 if active; 2 if inactive; 0 if not installed
 */
function get_plugin_status($location = '') {

	$errors = validate_plugin($location);

	// Plugin is found
	if(!is_wp_error($errors)) {
		if(is_plugin_inactive($location)) {
			return 2;
		}
		return 1;
	}
	else {
		return false;
	}
}</pre>
<h3>Usage example</h3>
<pre>$status = get_plugin_status('akismet/akismet.php');
switch($status) {
	case 1: echo 'Akismet is active.'; break;
	case 2: echo 'Akismet is installed but inactive.'; break;
	case 0: echo 'Akismet is not installed or active.'; break;
}</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=YGAvU5EJYgE:YZcZIssvp2Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=YGAvU5EJYgE:YZcZIssvp2Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=YGAvU5EJYgE:YZcZIssvp2Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=YGAvU5EJYgE:YZcZIssvp2Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=YGAvU5EJYgE:YZcZIssvp2Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=YGAvU5EJYgE:YZcZIssvp2Q:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/YGAvU5EJYgE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/simple-plugin-status-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://seodenver.com/simple-plugin-status-wordpress/</feedburner:origLink></item>
		<item>
		<title>A WordPress Developer’s Tips for Using Panic Coda</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/gOe8Wd-g_Pw/</link>
		<comments>http://seodenver.com/wordpress-developers-tips-panic-coda/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 17:46:36 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coda]]></category>
		<category><![CDATA[Panic Coda]]></category>
		<category><![CDATA[WordPress Codex]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4535</guid>
		<description><![CDATA[I use Panic Coda for coding. I like its Mac-style interface and it &#8220;fits&#8221; me well. There are some items that are frustrating, including a lack of auto-complete for functions you&#8217;ve already used in your code. Here are three tips to &#8230; <a href="http://seodenver.com/wordpress-developers-tips-panic-coda/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://panic.com/coda/"><img class="alignright size-full wp-image-4540" title="Panic Coda" src="http://www.seodenver.com/wp-content/uploads/2012/02/panic-coda.png" alt="Panic Coda" width="256" height="256" /></a>I use <a href="http://www.panic.com/coda/">Panic Coda</a> for coding. I like its Mac-style interface and it &#8220;fits&#8221; me well. There are some items that are frustrating, including a lack of auto-complete for functions you&#8217;ve already used in your code. Here are three tips to improve your coding experience.<span id="more-4535"></span></p>
<h2>My Three WordPress + Coda Tips</h2>
<h3>1. Install <a href="http://hitchhackerguide.com/2011/02/18/wordpress-syntax-mode-for-panic-coda/">WordPress Syntax mode for Panic Coda</a></h3>
<p>As a WordPress developer, I use lots of WordPress functions. This will allow you to auto-complete WordPress functions. Unfortunately, it doesn&#8217;t include function parameter hints, but that&#8217;s what tip #3 is for.</p>
<h3>2. Replace your WordPress Syntax mode colors</h3>
<p>I didn&#8217;t like the color set it came with, so I exported my colors:</p>
<ol>
<li>Go to Preferences &gt; Colors</li>
<li>Select the color set you like in the &#8220;Language&#8221; window (I exported PHP-HTML)</li>
<li>Click the &#8220;Export&#8221; tab</li>
<li>Edit the <code>.seestyle</code> file in a text editor</li>
<li>Find and replace <code>PHP-HTML</code> with <code>PHP-HTML-WP</code></li>
<li>Save the file</li>
<li>In Coda, click the Import button and select the <code>.seestyle</code> file</li>
<li>Voila: your colors are now what you&#8217;re used to.</li>
</ol>
<h3>3. Configure a <strong>WordPress Codex book</strong> in Coda</h3>
<p><span style="line-height: 24px;">Coda comes built-in with six reference &#8220;books&#8221;; web-based documentation pages for HTML, Javascript, PHP, and CSS.</span></p>
<p>There was <strong>an awesome shortcut in Coda</strong> I didn&#8217;t know about: Command + Double-click on a function name to open a Coda Book describing that function.</p>
<h4>How to configure a WordPress book</h4>
<ol>
<li>Press Command-6 (or go to View &gt; Mode &gt; Books)</li>
<li>Click the + button in the bottom-left of the window</li>
<li>Use the following settings:
<ul>
<li>Book Title: WordPress</li>
<li>Book URL: <code>http://codex.wordpress.org/Function_Reference/</code></li>
<li>Cover Image: Optional. <em><a href="http://www.drastudio.com/past/2008/11/29/adding-more-coda-books/">DRÄ Studio has an article</a> with tons of more book options and a nice <a href="http://www.drastudio.com/file/coda_books/wp.png">WordPress cover image</a> to use.</em></li>
<li>Use for Mode: <code>PHP-HTML</code> or <code>PHP-HTML-WP</code>, depending on whether you installed the Syntax Mode in Step 1</li>
<li>Search URL: <code>http://codex.wordpress.org/Function_Reference/*</code></li>
</ul>
</li>
<li>Click OK</li>
</ol>
<p>Now, when you have auto-completed functions and you forget what parameters the function takes, you can Command+Double-click the function name and be taken directly to the WordPress Codex page relating to it!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=gOe8Wd-g_Pw:uPqFsMLAIbQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=gOe8Wd-g_Pw:uPqFsMLAIbQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=gOe8Wd-g_Pw:uPqFsMLAIbQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=gOe8Wd-g_Pw:uPqFsMLAIbQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=gOe8Wd-g_Pw:uPqFsMLAIbQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=gOe8Wd-g_Pw:uPqFsMLAIbQ:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/gOe8Wd-g_Pw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/wordpress-developers-tips-panic-coda/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://seodenver.com/wordpress-developers-tips-panic-coda/</feedburner:origLink></item>
		<item>
		<title>A Sweet Javascript Slideshow Script</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/TQidRVYIWEM/</link>
		<comments>http://seodenver.com/a-sweet-javascript-slideshow-script/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 17:18:26 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Slideshow]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4533</guid>
		<description><![CDATA[Developers: reveal.js is a great standards-compliant slideshow script. It looks great and is an awesome alternative to Flash-based or image-based slideshows. reveal.js]]></description>
			<content:encoded><![CDATA[<p>Developers: <a href="http://lab.hakim.se/reveal-js/#/">reveal.js</a> is a great standards-compliant slideshow script. It looks great and is an awesome alternative to Flash-based or image-based slideshows.</p>
<p><a href="http://lab.hakim.se/reveal-js/#/">reveal.js</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=TQidRVYIWEM:KzwGxXff8uE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=TQidRVYIWEM:KzwGxXff8uE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=TQidRVYIWEM:KzwGxXff8uE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=TQidRVYIWEM:KzwGxXff8uE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=TQidRVYIWEM:KzwGxXff8uE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=TQidRVYIWEM:KzwGxXff8uE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/TQidRVYIWEM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/a-sweet-javascript-slideshow-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://seodenver.com/a-sweet-javascript-slideshow-script/</feedburner:origLink></item>
		<item>
		<title>Ten Blue Links</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/HgiitOJIX_o/</link>
		<comments>http://seodenver.com/ten-blue-links/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 23:05:33 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SERP]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4449</guid>
		<description><![CDATA[Remember when Google was ten blue links? Today, for the first time, I was actually taken aback by the amount of visual crap on Google results.]]></description>
			<content:encoded><![CDATA[<p>Remember when Google was ten blue links?</p>
<p>Today, for the first time, I was actually taken aback by the amount of visual crap on Google results.</p>
<p><a href="http://www.seodenver.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-11-at-4.02.27-PM.jpg"><img class="alignnone size-large wp-image-4450" title="Google search results" src="http://www.seodenver.com/wp-content/uploads/2012/01/google-search-results-1024x771.jpg" alt="Google search results" width="640" height="481" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=HgiitOJIX_o:pCLQV2m1sKQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=HgiitOJIX_o:pCLQV2m1sKQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=HgiitOJIX_o:pCLQV2m1sKQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=HgiitOJIX_o:pCLQV2m1sKQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=HgiitOJIX_o:pCLQV2m1sKQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=HgiitOJIX_o:pCLQV2m1sKQ:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/HgiitOJIX_o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/ten-blue-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://seodenver.com/ten-blue-links/</feedburner:origLink></item>
		<item>
		<title>Introducing IDX+,  WordPress Real Estate &amp; IDX Done Right</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/0A4-qAPFRVk/</link>
		<comments>http://seodenver.com/introducing-idx-plus/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 23:50:25 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[IDX]]></category>
		<category><![CDATA[IDX Plus]]></category>
		<category><![CDATA[Real Estate]]></category>
		<category><![CDATA[WordPres Real Estate Plugin]]></category>
		<category><![CDATA[WordPress IDX]]></category>
		<category><![CDATA[WordPress Plugin]]></category>
		<category><![CDATA[Wordpress Real Estate]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4140</guid>
		<description><![CDATA[I&#8217;m happy to release IDX+, the best WordPress IDX solution. IDX+ is a project I&#8217;ve been working on for months. It was born came out of necessity: a client told me &#8220;there is no perfect solution for WordPress real estate websites.&#8221; After &#8230; <a href="http://seodenver.com/introducing-idx-plus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>I&#8217;m happy to release <a href="http://www.idxpressplus.com">IDX+</a>, the best WordPress IDX solution.</h2>
<p><a href="http://www.seodenver.com/wp-content/uploads/2011/12/logo-idx-plus-large.png"><img class="alignright size-medium wp-image-4546" title="IDX+ works with Diverse Solutions' dsIDXpress plugin" src="http://www.seodenver.com/wp-content/uploads/2011/12/idx+-works-with-diverse-solutions-dsidxpress-plugin-300x127.png" alt="Enhance dsIDXpress" width="300" height="127" /></a>IDX+ is a project I&#8217;ve been working on for months. It was born came out of necessity: a client told me &#8220;there is no perfect solution for WordPress real estate websites.&#8221; After looking into it, I realized he was right.</p>
<p>IDX+ is the solution to your real estate website&#8217;s problems.<span id="more-4140"></span></p>
<h3>The <del>current</del> previous state of WordPress real estate plugins</h3>
<p>Realtors who want great SEO, complete IDX results, and customization have been in a tough spot: you either had to:</p>
<ul>
<li>list listings individually;</li>
<li>have all the IDX results on a subdomain;</li>
<li><strong>or pay tens of thousands of dollars to develop a leased website</strong>, then pay through the teeth for minor changes to wording or for features like related properties.</li>
</ul>
<p>Subdomains divide website value, and adding listings individually is often against MLS regulations and isn&#8217;t feasible for a large brokerage. Paying tens of</p>
<p>As a result, real estate agents and brokers <strong>had to have two websites</strong>: one site to get traffic, and the other site to convert the lead.</p>
<h2>The best available real estate plugin is great…</h2>
<p>The best WordPress plugin for getting site traffic is the <a href="http://www.diversesolutions.com/product/ds-idxpress/tour/introduction">dsIDXpress plugin by Diverse Solutions</a>. It offers fully indexable IDX content, great URL re-writing, Google Maps integration, lead forms, and more.</p>
<p>Diverse Solutions got it mostly right&#8211;for getting indexed by search engines. dsIDXpress is an SEO powerhouse, but <strong>it&#8217;s not a one-stop-shop</strong>.</p>
<h2>…but not perfect.</h2>
<h3>Your site can get tons of traffic with dsIDXpress &#8212; and now there&#8217;s a way to <strong>convert the traffic into leads</strong>.</h3>
<h3>dsIDXpress downsides:</h3>
<ul>
<li>No user registration</li>
<li>No saved searches / favorite listings</li>
<li>Lots of user dead-ends (for example: once listings expire, they&#8217;re gone, leaving 404 error pages)</li>
<li>Not customizable</li>
</ul>
<h2><img class="alignnone size-full wp-image-4413" title="IDX+ Real Estate Plugin Logo" src="http://www.seodenver.com/wp-content/uploads/2011/12/idx+-real-estate-plugin-logo.png" alt="Real Estate Plugin for WordPress" width="176" height="75" /></h2>
<h2><strong>IDX+ </strong>= the best WordPress IDX solution.</h2>
<h3>IDX+ builds on top of dsIDXpress to create an amazing platform</h3>
<p>dsIDXpress is the foundation for IDX+ and is required to use the plugin. IDX+ plus dsIDXpress makes an amazing package.</p>
<h3>IDX+ adds <em>tons</em> of features, including:</h3>
<ul>
<li><strong>Beautiful user registration</strong> &#8211; either forced or optional</li>
<li><strong>User/lead data</strong> &#8211; including every listing a user views, all searches performed, saved favorites, saved searches, last login, number of logins, and more.</li>
<li><strong>Favorite Listings &amp; Saved Searches</strong></li>
<li>Totally customizable SEO title tags for listings or search results</li>
<li><strong>SEO-friendly</strong> redirects for expired listings (redirect to the listing&#8217;s city or ZIP with a message to the user)</li>
<li>Hundreds of customizations &#8211; either &#8220;install and forget it,&#8221; or tweak the settings.</li>
<li><strong>Related Properties</strong> &#8211; even choose the search radius and +/- price spreads!</li>
<li><strong>Related Articles</strong> - You&#8217;ve blogged a ton; start reaping the benefits.</li>
<li>Completely template-based: customize the HTML, PHP, CSS to your heart&#8217;s delight!</li>
<li>Developer-friendly: WordPress actions and filters abound.</li>
</ul>
<p>There are <a href="http://www.idxpressplus.com/features/">hundreds of features</a> for one flat price &#8211; the beta version of the plugin is $599. All purchases of the beta will have <strong>free upgrades and support</strong> for one year.</p>
<h3><p class="highlight" ><a href="http://www.idxpressplus.com/buy/">Buy the plugin today &#8211; beta pricing of $599</a></p></h3>
<h2 style="text-align: center;">Learn more on <a href="http://www.idxpressplus.com/">IDXPlus.net</a></h2>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=0A4-qAPFRVk:YMhlj90VwOQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=0A4-qAPFRVk:YMhlj90VwOQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=0A4-qAPFRVk:YMhlj90VwOQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=0A4-qAPFRVk:YMhlj90VwOQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=0A4-qAPFRVk:YMhlj90VwOQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=0A4-qAPFRVk:YMhlj90VwOQ:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/0A4-qAPFRVk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/introducing-idx-plus/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://seodenver.com/introducing-idx-plus/</feedburner:origLink></item>
		<item>
		<title>Selling BoulderSEO.com</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/79N8I-WrrUg/</link>
		<comments>http://seodenver.com/selling-boulderseo-dot-com/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 23:58:33 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[Boulder]]></category>
		<category><![CDATA[Boulder SEO]]></category>
		<category><![CDATA[Colorado]]></category>
		<category><![CDATA[Denver SEO]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4051</guid>
		<description><![CDATA[A great domain goes up for sale on GoDaddy. I have put the BoulderSEO.com domain up for auction: with the upcoming release of the top-secret WordPress real estate plugin, I have chosen to sell this prime property. The BoulderSEO.com auction will &#8230; <a href="http://seodenver.com/selling-boulderseo-dot-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>A great domain goes up <a href="http://katz.si/3i">for sale on GoDaddy</a>.</h3>
<p><a href="http://www.seodenver.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-12-at-4.57.11-PM.jpg"><img class="alignright size-medium wp-image-4052" title="BoulderSEO.com" src="http://www.seodenver.com/wp-content/uploads/2011/12/boulderseo.com_-300x295.jpg" alt="BoulderSEO.com" width="300" height="295" /></a>I have put the BoulderSEO.com domain up for auction: with the upcoming release of the <a title="WordPress Real Estate Plugin: Stay Tuned…" href="http://www.seodenver.com/wordpress-real-estate-stay-tuned/">top-secret WordPress real estate plugin</a>, I have chosen to sell this prime property.</p>
<p>The BoulderSEO.com auction will be ending in 18 hours, so if you&#8217;re into Colorado, Denver, Loveland, or Boulder SEO (you get the idea!), check out this auction.</p>
<h2>You will instantly rank well with this great domain.</h2>
<p>Currently priced at only $660 &#8211; it&#8217;s a great deal! With literally no work done on the site since April, 2009, I still get 1-2 leads/month from this site. <strong>This domain will pay for itself in a month.</strong></p>
<h3><a title="BoulderSEO.com Auction" href="http://katz.si/3i">Go to the auction.</a></h3>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=79N8I-WrrUg:CYVZfpI5wuA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=79N8I-WrrUg:CYVZfpI5wuA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=79N8I-WrrUg:CYVZfpI5wuA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=79N8I-WrrUg:CYVZfpI5wuA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=79N8I-WrrUg:CYVZfpI5wuA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=79N8I-WrrUg:CYVZfpI5wuA:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/79N8I-WrrUg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/selling-boulderseo-dot-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://seodenver.com/selling-boulderseo-dot-com/</feedburner:origLink></item>
		<item>
		<title>WordPress Real Estate Plugin: Stay Tuned…</title>
		<link>http://feedproxy.google.com/~r/DenverSEO/~3/xQp-tbajmcg/</link>
		<comments>http://seodenver.com/wordpress-real-estate-stay-tuned/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 21:13:37 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[IDX]]></category>
		<category><![CDATA[Real Estate]]></category>
		<category><![CDATA[Real Estate Plugin]]></category>
		<category><![CDATA[Wordpress Real Estate]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=4016</guid>
		<description><![CDATA[You may have noticed this blog has gone un-updated. That&#8217;s because I&#8217;ve been working on an awesome new plugin. WordPress + Real Estate + User Data + SEO In the past, I&#8217;ve written posts about how to optimize your WordPress &#8230; <a href="http://seodenver.com/wordpress-real-estate-stay-tuned/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You may have noticed this blog has gone un-updated. That&#8217;s because I&#8217;ve been working on an awesome new plugin.</p>
<h3>WordPress + Real Estate + User Data + SEO</h3>
<p>In the past, I&#8217;ve written posts about <a title="Building a Real Estate Website in WordPress – Part 1" href="http://www.seodenver.com/building-a-real-estate-website-in-wordpress-part-1/">how to optimize your WordPress real estate website for SEO</a> and I&#8217;ve created a <a title="Trulia Plugin for WordPress" href="http://www.seodenver.com/trulia/">Trulia plugin</a> for WordPress.</p>
<p><strong>This WordPress real estate plugin</strong> changes the game of what you can do with your WordPress website &#8212; and for how much money. No longer do you need to pay tens of thousands of dollars for an indexed IDX solution.</p>
<p><strong>Next week I will release a beta version</strong>, so stay tuned for the formal announcement.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DenverSEO?a=xQp-tbajmcg:k0eonfhzr3o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=xQp-tbajmcg:k0eonfhzr3o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=xQp-tbajmcg:k0eonfhzr3o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=xQp-tbajmcg:k0eonfhzr3o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DenverSEO?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DenverSEO?a=xQp-tbajmcg:k0eonfhzr3o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DenverSEO?i=xQp-tbajmcg:k0eonfhzr3o:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DenverSEO/~4/xQp-tbajmcg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://seodenver.com/wordpress-real-estate-stay-tuned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://seodenver.com/wordpress-real-estate-stay-tuned/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 0/0 objects using disk: basic

Served from: seodenver.com @ 2012-05-16 12:23:04 -->

