<?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>48Web &#187; wordpress</title>
	<atom:link href="http://48web.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://48web.com</link>
	<description>WordPress Consulting for Businesses</description>
	<lastBuildDate>Wed, 19 Oct 2011 20:21:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>WordPress Query Multiple Taxonomies</title>
		<link>http://48web.com/wordpress-query-multiple-taxonomies/</link>
		<comments>http://48web.com/wordpress-query-multiple-taxonomies/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 14:40:51 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress how to]]></category>

		<guid isPermaLink="false">http://48web.com/?p=890</guid>
		<description><![CDATA[How to query multiple custom taxonomies for WordPress custom types.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fwordpress-query-multiple-taxonomies%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-query-multiple-taxonomies%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This example is for an employee directory. We created a custom post type called &#8220;employee&#8221;. For that custom post type we created two custom taxonomies &#8211; &#8220;type&#8221; and &#8220;department&#8221;. Lets say we want to find employees in the technology department that are programmers.</p>
<pre class="brush: plain; title: ; notranslate">$args=array(
	  'post_type' =&gt; 'employee',
	  'post_status' =&gt; 'publish',
	  'posts_per_page' =&gt; -1,
	  'caller_get_posts' =&gt; 1,
	  'order' =&gt; 'ASC',
	  'orderby' =&gt; 'title',
	  'type' =&gt; 'programmer',
	  'department'  =&gt; 'technology'
	);

query_posts( $args );

// loop it</pre>
<p>Hopefully this helps if you are looking to query multiple custom taxonomies from custom post types in WordPress. Have questions? Let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-query-multiple-taxonomies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cheatin’ uh? Error &#8211; WordPress Custom Post Types</title>
		<link>http://48web.com/cheatin%e2%80%99-uh-error-wordpress-custom-post-types/</link>
		<comments>http://48web.com/cheatin%e2%80%99-uh-error-wordpress-custom-post-types/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 00:36:01 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[cheatin uh]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[custom taxonomy]]></category>
		<category><![CDATA[register taxonomy]]></category>

		<guid isPermaLink="false">http://48web.com/?p=883</guid>
		<description><![CDATA[This is for those of you hunting for the Cheatin&#8217; uh? WordPress error when developing custom post types. It&#8217;s most likely an issue with what you named a custom taxonomy that you intend to attach to a custom post type. In our case we had&#8230; This is a frustrating error because you simply get the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fcheatin%25e2%2580%2599-uh-error-wordpress-custom-post-types%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fcheatin%25e2%2580%2599-uh-error-wordpress-custom-post-types%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This is for those of you hunting for the <strong>Cheatin&#8217; uh?</strong> WordPress error when developing <a href="http://codex.wordpress.org/Post_Types#Custom_Types" target="_blank">custom post types</a>.</p>
<p>It&#8217;s most likely an issue with what you named a <a href="http://codex.wordpress.org/Function_Reference/register_taxonomy" target="_blank">custom taxonomy</a> that you intend to attach to a custom post type.</p>
<p>In our case we had&#8230;</p>
<pre class="brush: plain; title: ; notranslate">register_taxonomy(&quot;Types&quot;, array(&quot;portfolio&quot;), array(&quot;hierarchical&quot; =&gt; true, &quot;label&quot; =&gt;; &quot;Types&quot;, &quot;singular_label&quot; =&gt; &quot;Type&quot;, &quot;rewrite&quot; =&amp;&gt; true));</pre>
<p>This is a frustrating error because you simply get the &#8220;Cheatin uh?&#8221; message.</p>
<p>Here&#8217;s the fix</p>
<pre class="brush: plain; title: ; notranslate">register_taxonomy(&quot;types&quot;, array(&quot;portfolio&quot;), array(&quot;hierarchical&quot; =&gt; true, &quot;label&quot; =&gt; &quot;Types&quot;, &quot;singular_label&quot; =&gt; &quot;Type&quot;, &quot;rewrite&quot; =&gt; true));</pre>
<p>Notice the difference? The fix is your c<strong>ustom taxonomy&#8217;s name has to be lower case</strong>. That should save you a couple hour hunt down a rabbit hole.</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/cheatin%e2%80%99-uh-error-wordpress-custom-post-types/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>WordPress E-Commerce &#8211; PrintShowerGames.com</title>
		<link>http://48web.com/wordpress-e-commerce-printshowergames-com/</link>
		<comments>http://48web.com/wordpress-e-commerce-printshowergames-com/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 18:23:34 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[clients]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress e-commerce]]></category>
		<category><![CDATA[wordpress theme design]]></category>

		<guid isPermaLink="false">http://48web.com/?p=873</guid>
		<description><![CDATA[Our latest project was a WordPress E-commerce store selling printable baby shower games.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fwordpress-e-commerce-printshowergames-com%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-e-commerce-printshowergames-com%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Our latest project was a WordPress E-commerce store selling printable <a href="http://PrintShowerGames.com/baby-shower-games" target="_blank">baby shower games</a>.</p>
<h4>Screenshots</h4>
<h4><a href="http://printshowergames.com"><img class="alignnone size-large wp-image-874" title="WordPress E-Commerce - PrintShowerGames.com" src="http://48web.com/wp-content/uploads/2011/02/WordPress-E-Commerce-PrintShowerGames.com-4-874x1024.png" alt="Baby Shower Games" width="524" height="614" /></a></h4>
<p><a href="http://printshowergames.com/baby-shower-games/baby-shower-word-scramble-game/"><img class="alignnone size-large wp-image-875" title="WordPress E-Commerce - PrintShowerGames.com 3" src="http://48web.com/wp-content/uploads/2011/02/WordPress-E-Commerce-PrintShowerGames.com-3-860x1024.png" alt="Baby Shower Word Scramble" width="516" height="614" /></a></p>
<p><a href="http://printshowergames.com/free-baby-shower-games"><img class="alignnone size-full wp-image-876" title="WordPress E-Commerce - PrintShowerGames.com 2" src="http://48web.com/wp-content/uploads/2011/02/WordPress-E-Commerce-PrintShowerGames.com-2.png" alt="Free Baby Shower Games" width="469" height="474" /></a></p>
<h4>What We Did</h4>
<ol>
<li><a href="http://48Press.com" target="_blank">WordPress Hosting</a></li>
<li>SEO and Site Optimization</li>
<li>Landing Page Design <em>(see <a href="http://printshowergames.com/free-baby-shower-games" target="_blank">free baby shower games</a>)</em></li>
<li>Site Configuration / Optimization</li>
<li>WordPress Theme Design and Updates</li>
<li>E-Commerce Integration</li>
</ol>
<p>Questions? Comments? Let us know below!</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-e-commerce-printshowergames-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s The Best Forum Plugin For WordPress?</title>
		<link>http://48web.com/whats-the-best-forum-plugin-for-wordpress/</link>
		<comments>http://48web.com/whats-the-best-forum-plugin-for-wordpress/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 02:38:31 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress forum plugin]]></category>

		<guid isPermaLink="false">http://48web.com/whats-the-best-forum-plugin-for-wordpress/</guid>
		<description><![CDATA[What's the best forum plugin for WordPress? We like Simple:Press, BuddyPress, and bbPress.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fwhats-the-best-forum-plugin-for-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwhats-the-best-forum-plugin-for-wordpress%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Andy&#8217;s answer on Quora to <span class="qlink_container"><a href="http://www.quora.com/Whats-the-best-forum-plugin-for-Wordpress">What&#8217;s the best forum plugin for WordPress?</a></span></p>
<ol>
<li><a href="http://simple-press.com/" target="_blank">Simple:Press</a></li>
<li><a href="http://bbpress.org/" target="_blank">bbPress</a></li>
<li><a href="http://buddypress.org/" target="_blank">BuddyPress</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/whats-the-best-forum-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0.5 Released</title>
		<link>http://48web.com/wordpress-3-0-5-released/</link>
		<comments>http://48web.com/wordpress-3-0-5-released/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 23:59:28 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://48web.com/?p=857</guid>
		<description><![CDATA[WordPress 3.0.5 Security Release]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fwordpress-3-0-5-released%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-3-0-5-released%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://wordpress.org/news/2011/02/wordpress-3-0-5/" target="_blank">WordPress 3.0.5 was released today</a>&#8230;</p>
<blockquote><p>This security release is required if you have any untrusted user accounts, but it also comes with important security enhancements and hardening. All WordPress users are strongly encouraged to update.</p></blockquote>
<p>Release details can be found <a href="http://codex.wordpress.org/Version_3.0.5" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-3-0-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add Social Sharing Buttons To WordPress Blog</title>
		<link>http://48web.com/how-to-add-social-sharing-buttons-to-wordpress-blog/</link>
		<comments>http://48web.com/how-to-add-social-sharing-buttons-to-wordpress-blog/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 23:34:56 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[quora]]></category>
		<category><![CDATA[social buttons]]></category>

		<guid isPermaLink="false">http://48web.com/?p=848</guid>
		<description><![CDATA[A recent Quora question I answered&#8230; &#8220;How can I add social sharing buttons to my WordPress blog?&#8220; We&#8217;ve talked WordPress sharing plugins before&#8230; But if you want multiple sharing options (LinkedIn, Twitter, Facebook, etc) then install the Sexy Bookmarks plugin and configure it to use whichever networks you want to have your content shared on. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fhow-to-add-social-sharing-buttons-to-wordpress-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fhow-to-add-social-sharing-buttons-to-wordpress-blog%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A recent <a href="http://www.quora.com/Andy-Brudtkuhl" target="_blank">Quora</a> question I answered&#8230; &#8220;<strong><a title="My Answer On Quora" href="http://www.quora.com/How-can-I-add-social-sharing-buttons-to-my-WordPress-blog" target="_blank">How can I add social sharing buttons to my WordPress blog?</a></strong>&#8220;</p>
<p>We&#8217;ve talked <a title="WordPress Sharing Plugins" href="http://48web.com/wordpress-sharing-plugins/">WordPress sharing plugins</a> before&#8230;</p>
<p>But if you want multiple sharing options (LinkedIn, Twitter, Facebook, etc) then install the <a href="http://wordpress.org/extend/plugins/sexybookmarks/" target="_blank">Sexy Bookmarks plugin</a> and configure it to use whichever networks you want to have your content shared on.</p>
<p>If you want just Twitter and Facebook you can install just the <a href="http://wordpress.org/extend/plugins/facebook-like-button/" target="_blank">Facebook Like Button</a> and <a href="http://wordpress.org/extend/plugins/twitter-tweet-button/" target="_blank">Twitter Tweet Button</a>.</p>
<div id="attachment_853" class="wp-caption aligncenter" style="width: 573px"><a href="http://48web.com/wp-content/uploads/2011/02/WordPress-Sharing-Buttons.png"><img class="size-full wp-image-853" title="WordPress Sharing Buttons" src="http://48web.com/wp-content/uploads/2011/02/WordPress-Sharing-Buttons.png" alt="How To Add Social Sharing Buttons To WordPress" width="563" height="172" /></a>
<p class="wp-caption-text">Social Bookmarks In Action on AdMavericks.com</p>
</div>
<p><strong>WordPress Social Sharing Buttons</strong></p>
<ul>
<li><a href=" http://wordpress.org/extend/plugins/sexybookmarks/" target="_blank">SexyBookmarks</a></li>
<li><a href=" http://wordpress.org/extend/plugins/share-and-follow/" target="_blank">Share And Follow</a></li>
<li><a href="http://wordpress.org/extend/plugins/facebook-like-button/" target="_blank">Facebook Like Button</a></li>
<li><a href="http://wordpress.org/extend/plugins/tweetmeme/" target="_blank">Tweetmeme</a></li>
<li><a href="http://wordpress.org/extend/plugins/twitter-tweet-button/" target="_blank">Twitter Tweet Button</a></li>
</ul>
<p>On most of our WordPress sites we use the Facebook Like button along with the Twitter Tweet button plugins and place theme into the theme with shortcodes. This way we have more control over where they show up and how they look in our WordPress themes.</p>
<p><strong>Got questions? Comments? Suggestions? Let us know in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/how-to-add-social-sharing-buttons-to-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I SEO my WordPress hosted blog?</title>
		<link>http://48web.com/how-do-i-seo-my-wordpress-hosted-blog/</link>
		<comments>http://48web.com/how-do-i-seo-my-wordpress-hosted-blog/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:52:53 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[quora]]></category>
		<category><![CDATA[wordpress seo]]></category>

		<guid isPermaLink="false">http://48web.com/how-do-i-seo-my-wordpress-hosted-blog/</guid>
		<description><![CDATA[I regularly post answers on Quora to WordPress questions and will be cross posting some of my more popular answers here&#8230; This question was how to SEO a WordPress blog. I always start with these simple steps&#8230;. Set up permalinks properly (I use %category%/%postname%) Install All-In-One SEO plugin Put keyword in Title Put keyword-rich description [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fhow-do-i-seo-my-wordpress-hosted-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fhow-do-i-seo-my-wordpress-hosted-blog%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I regularly post answers on Quora to WordPress questions and will be cross posting some of my more popular answers here&#8230;</p>
<p>This question was how to SEO a WordPress blog. I always start with these simple steps&#8230;.</p>
<ol>
<li>Set up permalinks properly (I use %category%/%postname%)</li>
<li>Install All-In-One SEO plugin
<ul>
<li>Put keyword in Title</li>
<li>Put keyword-rich description for Meta description</li>
</ul>
</li>
<li>Optimize On Page elements
<ul>
<li>Post/Page titles should be H1/H2</li>
<li>Link to internal pages with keywords</li>
<li>Use alt/title elements with keywords in them</li>
</ul>
</li>
<li>Write good keyword-rich content
<ul>
<li>First step is to know what keywords to target</li>
<li>Second step is to write well using those keywords</li>
</ul>
</li>
</ol>
<p>Those are the basics and should get you started with a highly optimized WordPress site. Once you get this far you can begin to take it to the next level&#8230;</p>
<p><span class="qlink_container"><a href="http://www.quora.com/How-do-I-SEO-my-Wordpress-hosted-blog">How do I SEO my WordPress hosted blog?</a></span></p>
<p>Questions? Comments? Let us know below!</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/how-do-i-seo-my-wordpress-hosted-blog/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>hashDSM &#8211; Des Moines In Real Time</title>
		<link>http://48web.com/hashdsm-des-moines-in-real-time/</link>
		<comments>http://48web.com/hashdsm-des-moines-in-real-time/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 17:25:47 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[des moines]]></category>
		<category><![CDATA[hashdsm]]></category>

		<guid isPermaLink="false">http://48web.com/?p=831</guid>
		<description><![CDATA[A couple nights ago we launched one of our fun side projects we dubbed hashDSM (or #dsm). Naturally, we built the site on WordPress but the concept is to monitor commonly used Twitter hashtags in Des Moines, Iowa and aggregate them into a real-time stream organized by topics. We crowd sourced the common hashtags from [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fhashdsm-des-moines-in-real-time%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fhashdsm-des-moines-in-real-time%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A couple nights ago we launched one of our fun side projects we dubbed <a href="http://hashdsm.com" target="_blank">hashDSM</a> (or #dsm).</p>
<p>Naturally, we built the site on WordPress but the concept is to monitor commonly used <a href="http://support.twitter.com/entries/49309-what-are-hashtags-symbols" target="_blank">Twitter hashtags</a> in Des Moines, Iowa and aggregate them into a real-time stream organized by topics. We crowd sourced the common hashtags from <a href="http://www.quora.com/What-are-common-hashtags-used-in-Des-Moines">a question on Quora</a>.</p>
<p style="text-align: center;"><a href="http://hashdsm.com"><img class="aligncenter size-large wp-image-832" title="WordPress Site - hashDSM" src="http://48web.com/wp-content/uploads/2011/01/hashDSM-869x1024.png" alt="WordPress Site - hashDSM" width="521" height="614" /></a></p>
<p>There are a few issues left we hope to iron out (like caching for when the Twitter API doesn&#8217;t respond) but thought we&#8217;d get it out there anyway.</p>
<p>Questions? Comments? Feedback? Please let us know in the comments or <a href="http://clicktotweet.com/w9Yh6" target="_blank">on Twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/hashdsm-des-moines-in-real-time/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy WordPress Security Tips</title>
		<link>http://48web.com/easy-wordpress-security-tips/</link>
		<comments>http://48web.com/easy-wordpress-security-tips/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 17:13:30 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress security]]></category>

		<guid isPermaLink="false">http://48web.com/?p=826</guid>
		<description><![CDATA[WordPress comes under attack a lot because it&#8217;s such a popular platform. We&#8217;ve talked about basic WordPress security tips but what do you do when you suspect your WordPress site has been hacked? Here are some tools to help you keep your WordPress site safe or cleanup after you have been hacked.. WordPress Exploit Scanner [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Feasy-wordpress-security-tips%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Feasy-wordpress-security-tips%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>WordPress comes under attack a lot because it&#8217;s such a popular platform. We&#8217;ve talked about basic <a href="http://48w.me/23b1">WordPress security tips</a> but what do you do when you suspect your WordPress site has been hacked?</p>
<p>Here are some tools to help you keep your WordPress site safe or cleanup after you have been hacked..</p>
<p><strong>WordPress Exploit Scanner </strong><a href="http://wordpress.org/extend/plugins/exploit-scanner/">[link]</a><br />
Search the files and database of your WordPress install for signs that may indicate that it has fallen victim to malicious hackers.</p>
<p><strong>WordPress TAC </strong><a href="http://wordpress.org/extend/plugins/tac/">[link]</a><br />
WordPress Theme Authenticity Checker&#8230; Scans theme code for potentially malicious code.</p>
<p><strong>WordPress Security Scan </strong><a href="http://wordpress.org/extend/plugins/wp-security-scan/">[link]</a><br />
Scans your WordPress installation for security vulnerabilities.</p>
<p>Questions? Comments? Suggestions? Let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/easy-wordpress-security-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Security Tips</title>
		<link>http://48web.com/wordpress-security-tips/</link>
		<comments>http://48web.com/wordpress-security-tips/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 16:41:50 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[how to secure wordpress]]></category>
		<category><![CDATA[securing wordpress]]></category>
		<category><![CDATA[wordpress security]]></category>

		<guid isPermaLink="false">http://48web.com/?p=822</guid>
		<description><![CDATA[Worrying about security sucks. And since WordPress has become one of the most popular publishing platform in the world it has also become a target for hackers. We&#8217;ve had a few questions about keeping WordPress secure so here&#8217;s a few good tips and links to get you started. WordPress Security Tips WordPress.org offers a few [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right;margin-left: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2F48web.com%2Fwordpress-security-tips%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-security-tips%2F&amp;source=48web&amp;style=normal&amp;service=awe.sm&amp;service_api=24f7cea8ee9859ed76450464764108ce48d9e2e7d9c2e4124b63a028bf85d767&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Worrying about security sucks. And since WordPress has become one of the most popular publishing platform in the world it has also become a target for hackers.</p>
<p>We&#8217;ve had a few questions about keeping WordPress secure so here&#8217;s a few good tips and links to get you started.</p>
<p><strong>WordPress Security Tips</strong><br />
<em>WordPress.org <a title="WordPress Security Through Obscurity" href="http://codex.wordpress.org/Hardening_WordPress#Security_through_obscurity" target="_blank">offers a few simple tips</a> we use on every site that definitely helps with basic WordPress lockdown.</em></p>
<ol>
<li>Don&#8217;t name your Administrator user &#8220;admin&#8221;. This is an option on install and can be changed if y ou are already up and running</li>
<li>Change your database table prefix. Again &#8211; this is an option upon install and can also be changed if you are already up and running. We recommend using a random prefix, like &#8220;wpX38f4_&#8221;</li>
<li><a href="http://codex.wordpress.org/Hardening_WordPress#File_permissions">Proper File Permissions are VERY important</a> &#8211; set them and forget them. You can do this from your FTP program</li>
<li><a href="http://wordpress.org/extend/plugins/wp-security-scan/">Install WP-Security-Scan</a> &#8211; it scans your site for vulnerabilities</li>
<li><a href="http://www.devlounge.net/code/protect-your-wordpress-wp-config-so-you-dont-get-hacked">Protect your wp-config.php file</a></li>
<li>Make sure your <a title="Secure WordPress Hosting" href="http://48press.com" target="_blank">WordPress hosting</a> provider takes security seriously</li>
</ol>
<p><strong>WordPress Lockdown Video</strong><br />
This is a great video from Brad Williams on locking down WordPress from WordCamp Boston. [<a href="http://wordpress.tv/2010/01/23/brad-williams-security-boston10/">Link</a>]</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="224" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=OKuAkoRZ" /><param name="src" value="http://s0.videopress.com/player.swf?v=1.02" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="224" src="http://s0.videopress.com/player.swf?v=1.02" allowfullscreen="true" wmode="transparent" flashvars="guid=OKuAkoRZ"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-security-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Content Delivery Network via Amazon Web Services: CloudFront: Amazon Web Services: S3: cdn.48web.com

Served from: 48web.com @ 2012-05-18 06:06:44 -->
