<?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; Blog</title>
	<atom:link href="http://48web.com/category/blog/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>Get Permalink By Page Name Or Slug</title>
		<link>http://48web.com/wordpress-get-permalink-by-page-name-or-slug/</link>
		<comments>http://48web.com/wordpress-get-permalink-by-page-name-or-slug/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 20:09:42 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress development]]></category>

		<guid isPermaLink="false">http://48web.com/?p=896</guid>
		<description><![CDATA[We used to write custom functions to return these values until we discovered you can pass get_permalink a function that will return the ID. Examples.. Get Permalink By Page Name Get Permalink By Page Slug Note On Hierarchical Pages and The Slug If you have a page hierarchy you will have to pass the full [...]]]></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-get-permalink-by-page-name-or-slug%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-get-permalink-by-page-name-or-slug%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>We used to write custom functions to return these values until we discovered you can pass get_permalink a function that will return the ID.</p>
<p>Examples..</p>
<p><strong>Get Permalink By Page Name</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;a href=&quot;&lt;?php echo get_permalink( get_page_by_path( 'Events' ) ) ?&gt;&quot;&gt;Events&lt;/a&gt;
</pre>
<p><strong>Get Permalink By Page Slug</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;a href=&quot;&lt;?php echo get_permalink( get_page_by_path( 'events' ) ) ?&gt;&quot;&gt;Events&lt;/a&gt;
</pre>
<p><strong>Note On Hierarchical Pages and The Slug</strong><br />
If you have a page hierarchy you will have to pass the full slug including the parent to the get_page_by_path function. </p>
<p>Example&#8230; To get the permalink using method with child page, you need to pass the full slug. In this case we have a child page called &#8220;Parties&#8221; with a parent page called &#8220;Events&#8221;.</p>
<pre class="brush: php; title: ; notranslate">
&lt;a href=&quot;&lt;?php echo get_permalink( get_page_by_path( 'events/parties' ) ) ?&gt;&quot;&gt;Parties&lt;/a&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-get-permalink-by-page-name-or-slug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>0</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>Dwolla vs PayPal &#8211; Fees</title>
		<link>http://48web.com/dwolla-vs-paypal-fees/</link>
		<comments>http://48web.com/dwolla-vs-paypal-fees/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 16:58:04 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[dwolla]]></category>
		<category><![CDATA[paypal]]></category>

		<guid isPermaLink="false">http://48web.com/?p=863</guid>
		<description><![CDATA[We have started expanding our WordPress services overseas &#8211; which is great but it&#8217;s surprisingly difficult to get paid without getting gouged. Luckily Dwolla is working on it. Today, Dwolla posted some graphics today on how their rates compare to using debit / credit cards. Here&#8217;s what it looks like compared to PayPal for the average cost [...]]]></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%2Fdwolla-vs-paypal-fees%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fdwolla-vs-paypal-fees%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>We have started expanding our WordPress services overseas &#8211; which is great but it&#8217;s surprisingly difficult to get paid without getting gouged. Luckily<a href="http://twitter.com/dwolla/status/37220371505618944" target="_blank"> Dwolla is working on it</a>.</p>
<p>Today, <a href="http://www.dwolla.org/blog/dwolla-by-the-numbers-we-are-good-for-your-business/#comment-5664" target="_blank">Dwolla posted some graphics today on how their rates compare to using debit / credit cards.</a> Here&#8217;s what it looks like <strong>compared to PayPal</strong> for the average cost of one of our WordPress sites&#8230;</p>
<p><strong><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-receiving-fees-outside" target="_blank">PayPal Fees</a> vs <a href="http://www.dwolla.org/help/fees/" target="_blank">Dwolla Fees</a> </strong></p>
<div id="attachment_871" class="wp-caption alignnone" style="width: 384px"><img class="size-full wp-image-871" title="PayPalvsDwollaFees" src="http://48web.com/wp-content/uploads/2011/02/PayPalvsDwollaFees.png" alt="" width="374" height="302" />
<p class="wp-caption-text">PayPal Fees vs Dwolla Fees</p>
</div>
<p>It adds up quickly!</p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/dwolla-vs-paypal-fees/feed/</wfw:commentRss>
		<slash:comments>5</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>WordPress Theme Updates &#8211; Skeletor</title>
		<link>http://48web.com/wordpress-theme-updates-skeletor/</link>
		<comments>http://48web.com/wordpress-theme-updates-skeletor/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 21:30:00 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress custom theme]]></category>
		<category><![CDATA[wordpress theme design]]></category>

		<guid isPermaLink="false">http://48web.com/?p=723</guid>
		<description><![CDATA[We've updated Skeletor - our base WordPress theme!]]></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-theme-updates-skeletor%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-theme-updates-skeletor%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>We&#8217;ve pushed some revisions to our WordPress base theme &#8220;<a title="WordPress Base Theme" href="http://48web.com/some-wordpress-resources/" target="_blank">Skeletor</a>&#8220;. These are some minor updates as we work on a bigger update for this fun project!</p>
<p><strong>What is Skeletor you ask?</strong> It&#8217;s a base theme for any new WordPress development we discussed in a <a href="http://48web.com/some-wordpress-resources/" target="_blank">prior post</a>. We are trying to build a theme with all the plumbing you need in place to build any WordPress theme from scratch. This is more about convention than it is design. <em>It&#8217;s a skeleton theme</em> &#8211; hence the name <img src='http://48web.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://github.com/48Web/wordpress-theme-skeleton"><img class="aligncenter size-full wp-image-724" title="Skeletor Commits" src="http://cdn.48web.com/wp-content/uploads/2010/10/Skeletor-Commits.png" alt="WordPress Theme Commits" width="554" height="551" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-theme-updates-skeletor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Protecting WordPress Video Walkthrough</title>
		<link>http://48web.com/protecting-wordpress-video-walkthrough/</link>
		<comments>http://48web.com/protecting-wordpress-video-walkthrough/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 17:05:36 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress security]]></category>

		<guid isPermaLink="false">http://48web.com/?p=715</guid>
		<description><![CDATA[A video walkthrough from Brad Williams on keeping a WordPress site secure.]]></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%2Fprotecting-wordpress-video-walkthrough%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fprotecting-wordpress-video-walkthrough%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 <a href="http://wordpress.tv/2010/01/23/brad-williams-security-boston10/" target="_blank">video walkthrough</a> from <a href="http://twitter.com/williamsba" target="_blank">Brad Williams</a> on keeping a WordPress site secure from <a href="http://wordcampboston.com/" target="_blank">WordCamp Boston</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/protecting-wordpress-video-walkthrough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some WordPress Resources</title>
		<link>http://48web.com/some-wordpress-resources/</link>
		<comments>http://48web.com/some-wordpress-resources/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 17:21:03 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpres theme design]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress hosting]]></category>
		<category><![CDATA[wordpress multisite]]></category>

		<guid isPermaLink="false">http://48web.com/?p=710</guid>
		<description><![CDATA[We've pushed out a couple WordPress projects over the last week. Skeletor is a base WordPress theme anyone can use as a starting point for custom theme development. WordPress Multi-Site is the base for a WordPress hosting platform. Enjoy!]]></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%2Fsome-wordpress-resources%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fsome-wordpress-resources%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>Over the last week <a href="http://github.com/48Web" target="_blank">we have been pushing some code out</a> that we use to efficiently run a <a href="http://48web.com/wordpress">WordPress consulting</a> company.</p>
<h3>WordPress Skeletor</h3>
<p><a href="http://github.com/48Web/wordpress-theme-skeleton" target="_blank">Skeletor is a WordPress &#8220;skeleton&#8221; theme</a> that we have been using as a starting point for any new custom theme development. It&#8217;s got all kinds of bells and whistles we&#8217;ve added since our initial fork of <a href="http://kennethreitz.com/" target="_blank">Kenneth Reitz&#8217;s</a> <a href="http://github.com/kennethreitz/wordpress-theme-skeleton" target="_blank">WordPress Theme Skeleton</a> project. Basically it has all the &#8220;stuff&#8221; you need to start a new WordPress theme from scratch.</p>
<p>We&#8217;ll be adding features as we need and will let you know about them so you can use it for your WordPress theme development needs.</p>
<h3>WordPress Multi-Site</h3>
<p>A <a title="Jason Fried on &quot;Making Money off your By-Products&quot;" href="http://vimeo.com/5493202" target="_blank">by-product</a> of doing WordPress consulting is <a title="WordPress Hosting" href="http://48press.com" target="_blank">WordPress hosting</a>. For the last few years we have recommended hosting services and used various ones for our own projects. Not anymore. We are now developing a <a href="http://github.com/48Web/WordPress-Multi-Site" target="_blank">scalable WordPress hosting platform</a> we can offer to our clients <em>(and anybody serious about <a href="http://48press.com/" target="_blank">WordPress hosting</a> for their business)</em>.</p>
<p>The base of that platform is a combination of <a href="http://codex.wordpress.org/Create_A_Network" target="_blank">WordPress Multi-Site</a> and <a href="http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/" target="_blank">Domain Mapping</a>. We&#8217;ve packaged up the platform we are currently developing on so you can do the same <em>(well, you&#8217;ll have to configure your own server)</em>.</p>
<p>Oh &#8211; and if you don&#8217;t want to try to run this yourself &#8211; we can handle that for you <img src='http://48web.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>WordPress Multi-Author Widget Plugin</h3>
<p>Coming soon &#8211; our <a href="http://48web.com/wordpress-plugin-multi-author-widget/">WordPress Multi-Author Widget plugin</a>. This was another by-product of WordPress consulting. In one of <a href="http://48web.com/wordpress-launch-admavericks-com/">our latest projects</a> for <a href="http://lessingflynn.com" target="_blank">Des Moines ad agency</a> Lessing-Flynn we needed to replicate functionality that WordPress.com offers in one of their widgets.</p>
<p>After we couldn&#8217;t find anything &#8211; we built a plugin. It&#8217;s running on <a href="http://AdMavericks.com">their site</a> now and will soon be added to the WordPress plugin repository as well as GitHub.</p>
<p><strong>Questions? Comments? Let us know!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/some-wordpress-resources/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Weekly Email Newsletter</title>
		<link>http://48web.com/wordpress-weekly-email-newsletter/</link>
		<comments>http://48web.com/wordpress-weekly-email-newsletter/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 20:25:56 +0000</pubDate>
		<dc:creator>Andy Brudtkuhl</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress newsletter]]></category>

		<guid isPermaLink="false">http://48web.com/?p=693</guid>
		<description><![CDATA[Today we dropped our plans for a weekly WordPress newsletter for those of you out there that use WordPress for your business. We'll cover things like themes, plugins, administration, optimization and more.
]]></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-weekly-email-newsletter%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2F48web.com%2Fwordpress-weekly-email-newsletter%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>Today we dropped our plans for a <a href="http://48web.com/wordpress-weekly/">weekly WordPress newsletter</a> for those of you out there that use WordPress for your business. We&#8217;ll cover things like themes, plugins, administration, optimization and more.</p>
<p><a href="http://eepurl.com/6vNc" target="_blank"><img class="aligncenter" title="WordPress Weekly" src="http://cdn.48web.com/wp-content/uploads/2010/09/WordPress-Weekly.png" alt="WordPress For Business Newsletter" width="550" /></a></p>
<p><strong><a href="http://eepurl.com/6vNc" target="_blank">Sign Up Now! </a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://48web.com/wordpress-weekly-email-newsletter/feed/</wfw:commentRss>
		<slash:comments>0</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-02-06 05:50:43 -->
