<?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>Mike Van WinkleWordPress Theme Frameworks: Who need &#8216;em! | Mike Van Winkle</title>
	<atom:link href="http://www.mikevanwinkle.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikevanwinkle.com</link>
	<description>New Media Consultant and Wordpress Freak</description>
	<lastBuildDate>Fri, 30 Jul 2010 13:18:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress Theme Frameworks: Who need &#8216;em!</title>
		<link>http://www.mikevanwinkle.com/geek-think/wordpress-theme-frameworks-who-need-em/</link>
		<comments>http://www.mikevanwinkle.com/geek-think/wordpress-theme-frameworks-who-need-em/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 20:04:43 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Geek Think]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=431</guid>
		<description><![CDATA[The buzz word in WordPress circles these days is &#8220;framework&#8221;. What the hell does that mean? Isn&#8217;t WordPress a framework? The official definition offered in the WordPress Codex is &#8220;a theme that is designed to be a flexible foundation that &#8230; <a href="http://www.mikevanwinkle.com/geek-think/wordpress-theme-frameworks-who-need-em/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The buzz word in WordPress circles these days is &#8220;framework&#8221;. What the hell does that mean? Isn&#8217;t WordPress a framework? The official definition offered in the <a title="WordPress Theme Frameworks" href="http://codex.wordpress.org/Theme_Frameworks">WordPress Codex</a> is &#8220;a theme that is designed to be a flexible foundation that can serve as a parent theme for building child themes.&#8221; But this doesn&#8217;t quite give us enough information.</p>
<p>Taking only the simple definition under consideration, WordPress users are likely to get the impression that, all things being equal, you should use a framework. After all, who wouldn&#8217;t want the added benefit and &#8220;flexibility&#8221; of being able to have &#8220;child&#8221; themes. Sounds cool.</p>
<p>But once you unpack a framework theme and start futzing with it, you quickly realize all is not perfect in the land of &#8220;frameworks&#8221;. So here&#8217;s my stab at a more useful definition. A <a title="WordPress Theme Frameworks" href="http://codex.wordpress.org/Theme_Frameworks">WordPress Theme Framework</a> is a theme that has additional code built into it making selected tasks easier for theme <em>developers</em> to manage. The emphasis on developers is mine and is very important.</p>
<p>Over the last several months I&#8217;ve built sites using several different frameworks and found that there is little advantage consistent across all frameworks, though each framework has specific advantages. The only consistency is that to really benefit from frameworks you need to have a deeper understanding of WordPress, its syntax, functions, plugins, etc.</p>
<p>If all you want to do is customize a theme, frameworks are likely to drive you crazy.</p>
<h2>In Theory</h2>
<p>In theory, frameworks are a very powerful thing. The idea is that you can take certain standard needs of theme developers and abstract them into new functions that allow the theme developer to execute customizations without messing with the theme core. With many theme frameworks, if you know what you&#8217;re doing, you can perform most theme modifications by editing only the style.css and the function.php files.</p>
<p>By way of an example, the <a title="Thematic Theme Framework" href="http://wordpress.org/extend/themes/thematic">Thematic Theme Framework</a> has a hook called <em>thematic_above_indexloop();. </em>If I wanted to add a feature ad banner above the index loop of a regular theme, I would have to go into the the <em>index.php, </em>find the loop, and ad the code<em>. </em>But in the framework I simply have to go to the function.php file and add the following:</p>
<pre>function feature_ad_banner() {
echo 'my feature ad banner';
}
add_action('thematic_above_indexloop','feature_ad_banner');</pre>
<p>This code just tells the theme to pull in my custom function when it triggers this action. This gives me a ton of power as a developer because I can easily build an awesome site without worrying about building the &#8220;guts&#8221; of the theme. Or, to put it simply, I can focus on the cool stuff while ignoring the mundane details.</p>
<h2>It&#8217;s all about the HOOKS</h2>
<p>The drawback is that each theme framework has its own peculiarities and learning the appropriate hooks and filters can take time. If you&#8217;re a developer, this time is justified because it saves time on future projects. But if you just understand the basics of  WordPress themes and are simply trying to customize one for your own use &#8230;especially if you aren&#8217;t all that comfortable with PHP &#8230; this extra level of abstraction can be a royal pain in your ass. If you&#8217;ve modified a loop before, you&#8217;ll find modifying a loop in a framework isn&#8217;t nearly as simple as you remembered. You have to create your own function and then track down the right hook to apply it to. A mod that used to take you 15 minutes, now takes you an hour.</p>
<p>Again, there are rewards to learning a framework, but make sure you understand the time investment required and how that squares with the benefits you expect to receive in return.</p>
<p>In short, WordPress Theme Frameworks are great for those serious about development. But hobbyist might want stick with an old fashioned WordPress Themes. In future articles I will look a few different frameworks and when you mind be inclined to use them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/geek-think/wordpress-theme-frameworks-who-need-em/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Site Plug: ReadyMadeWeb.com</title>
		<link>http://www.mikevanwinkle.com/geek-think/site-plug-readymadeweb-com/</link>
		<comments>http://www.mikevanwinkle.com/geek-think/site-plug-readymadeweb-com/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 14:53:28 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Geek Think]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[recommendations]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=379</guid>
		<description><![CDATA[For those of you on a budget (me me me me), www.readymadeweb.com is a great resource for web tips about easy-to-use, out-of-the-box, ready-made web-ware. Is there a record for the number of hyphens used in a single clause? For instance, &#8230; <a href="http://www.mikevanwinkle.com/geek-think/site-plug-readymadeweb-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those of you on a budget (me me me me), <a title="ReadyMadeWeb.com" href="http://readymadeweb.com/">www.readymadeweb.com</a> is a <a title="Great Resource for Web Tips" href="http://readymadeweb.com/">great resource for web tips</a> about easy-to-use, out-of-the-box, ready-made web-ware. Is there a record for the number of hyphens used in a single clause? For instance, here&#8217;s a great post explaining why you might want to use a <a title="Mass Follow Progams" href="http://readymadeweb.com/2010/02/04/using-mass-follow-tools-to-increase-your-twitter-followers/">mass follow program</a> to grow your twitter audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/geek-think/site-plug-readymadeweb-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usability Tips</title>
		<link>http://www.mikevanwinkle.com/design/best-practices/usability-tips/</link>
		<comments>http://www.mikevanwinkle.com/design/best-practices/usability-tips/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 16:00:41 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=357</guid>
		<description><![CDATA[Smashing Magazine has a great list of usability tips for web designers. Usability is one of those things that is often overlooked by small business and non-profits because they don&#8217;t have the resources they perceive necessary to engage in usability &#8230; <a href="http://www.mikevanwinkle.com/design/best-practices/usability-tips/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Smashing Magazine has a great list of <a title="Usability Tips" href="http://www.smashingmagazine.com/2009/09/24/10-useful-usability-findings-and-guidelines/">usability tips</a> for web designers. Usability is one of those things that is often overlooked by small business and non-profits because they don&#8217;t have the resources they perceive necessary to engage in usability testing. But really, there is loads of information out there about usability that small organizations can use to make their sites as competitive as possible.</p>
<h2>The highlights:</h2>
<p><strong>Tip #2: Users focus on faces</strong></p>
<p>This doesn&#8217;t mean you should redesign your website into a big face, but when you are using pictures that include faces think about things like where their eyes are focused.</p>
<p><strong>Tip #4: Most users don&#8217;t scroll</strong></p>
<p>Which begs the question, is it better to more pages that are shorter and require less scrolling? Probably.</p>
<p><strong>Tip #5: Blue is still the bet color for links.</strong></p>
<p>I&#8217;m a habitual transgressor of this rule.</p>
<p><strong>Tip #7: White space improves comprehension</strong></p>
<p>If you were tempted after reading tip #4 to cram everything in your site into the top third of the page, well think again. Crowding a page can crowd out the user.</p>
<p><a title="Usability Tips" href="http://www.smashingmagazine.com/2009/09/24/10-useful-usability-findings-and-guidelines/">Read the full article.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/design/best-practices/usability-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari 4. Me likey</title>
		<link>http://www.mikevanwinkle.com/geek-think/safari-4-me-likey/</link>
		<comments>http://www.mikevanwinkle.com/geek-think/safari-4-me-likey/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 15:27:32 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Geek Think]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=269</guid>
		<description><![CDATA[I&#8217;m using Safari 4 for the first time today &#8230; and I love it. I had grown tired of firefox, but still relied heavily on their FireBug web developer tool. Safari now has a similar tool built into the browser. &#8230; <a href="http://www.mikevanwinkle.com/geek-think/safari-4-me-likey/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using <a title="Safari 4" href="http://www.apple.com/safari/download/">Safari </a>4 for the first time today &#8230; and I love it. I had grown tired of firefox, but still relied heavily on their <a title="FireBug" href="http://getfirebug.com/">FireBug</a> web developer tool. Safari now has a similar tool built into the browser. Sweet. They have also taken the quick start page from Opera and added some style to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/geek-think/safari-4-me-likey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPod Touch Blogging</title>
		<link>http://www.mikevanwinkle.com/wordpress/ipod-touch-blogging/</link>
		<comments>http://www.mikevanwinkle.com/wordpress/ipod-touch-blogging/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 02:21:50 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/wordpress/ipod-touch-blogging/</guid>
		<description><![CDATA[This is my fort post from my ipod touch! It&#8217;s not a hard as I thought it would be &#8230; except that I have big thumbs.]]></description>
			<content:encoded><![CDATA[<p>This is my fort post from my ipod touch!  It&#8217;s not a hard as I thought it would be &#8230; except that I have big thumbs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/wordpress/ipod-touch-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New sites going live</title>
		<link>http://www.mikevanwinkle.com/news/new-sites-going-live/</link>
		<comments>http://www.mikevanwinkle.com/news/new-sites-going-live/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 23:10:49 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Featured Client]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Justin Tadlock]]></category>
		<category><![CDATA[Porfolio]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=234</guid>
		<description><![CDATA[I&#8217;m very happy to report two new projects going online. One is www.eightin08.com, another adaptation of Justin Tadlock&#8217;s Options theme. The other is www.friendsoffairness.com, which is, come to think of it, another adaptation of Justin Tadlock&#8217;s theme. Jeez, I wonder &#8230; <a href="http://www.mikevanwinkle.com/news/new-sites-going-live/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very happy to report two new projects going online. One is <a href="http://www.eightin08.com" target="_blank">www.eightin08.com</a>, another adaptation of<a href="http://justintadlock.com/"> Justin Tadlock&#8217;s Options</a> theme. The other is <a href="http://www.friendsoffairness.com">www.friendsoffairness.com</a>, which is, come to think of it, another adaptation of Justin Tadlock&#8217;s theme. Jeez, I wonder if there&#8217;s a message here!</p>
<p><a class="thickbox" href="http://www.eightin08.com"><img class="ngg-singlepic ngg-none" style="margin: 5px;" src="http://www.mikevanwinkle.com/wp-content/gallery/portfolio/picture-13.png" alt="picture-13.png" width="252" height="137" /></a><a class="thickbox" href="http://www.friendsoffairness.com"><img class="ngg-singlepic ngg-none" style="margin: 5px;" title="Friends of Fairness" src="http://www.mikevanwinkle.com/wp-content/gallery/portfolio/picture-15.png" alt="picture-15.png" width="267" height="138" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/news/new-sites-going-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and easy WordPress magazine format</title>
		<link>http://www.mikevanwinkle.com/design/featured-client/quick-and-easy-wordpress-magazine-format/</link>
		<comments>http://www.mikevanwinkle.com/design/featured-client/quick-and-easy-wordpress-magazine-format/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 22:37:15 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Featured Client]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=184</guid>
		<description><![CDATA[I am working with Texas Watchdog to set up a magazine style site. I have to give some props to Gabfire Design for putting together a very easy to use Magazine Style WordPress Theme. It has been very easy to &#8230; <a href="http://www.mikevanwinkle.com/design/featured-client/quick-and-easy-wordpress-magazine-format/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am working with <a href="http://www.texaswatchdog.org">Texas Watchdog</a> to set up a magazine style site. I have to give some props to <a href="http://www.gabfire.com/wordpress-magazine-theme-released/">Gabfire Design</a> for putting together a very easy to use <strong>Magazine Style WordPress Theme</strong>. It has been very easy to customize and turns out to be about the best free option available. In addition to starting with Gabfire&#8217;s very functional design, I installed Mark Jaquith&#8217;s very handy <a href="http://txfx.net/2005/08/16/new-plugin-multiple-authors/">Multiple Authors plugin</a>. This plugin allows you to associate more than one author with a post, which is absolutely essential for a magazine site! The <a href="http://www.texaswatchdog.org">Texas Watchdog</a> site is still a work in progress, but take a look.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/design/featured-client/quick-and-easy-wordpress-magazine-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Media Best Practices for Non-Profits</title>
		<link>http://www.mikevanwinkle.com/geek-think/new-media-best-practices-for-non-profits/</link>
		<comments>http://www.mikevanwinkle.com/geek-think/new-media-best-practices-for-non-profits/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 15:54:26 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Geek Think]]></category>
		<category><![CDATA[Non-Profits]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=148</guid>
		<description><![CDATA[Non-profit organizations are in particular need of solid new media advice. Scarce resources, ironically, can lead both to chronic underspending and chronic overspending on new media. Some non-profits rely on volunteer or intern labor to build their web presence. To &#8230; <a href="http://www.mikevanwinkle.com/geek-think/new-media-best-practices-for-non-profits/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mikevanwinkle.com/wp-content/uploads/2008/08/8-13-2008-best-practices-for-non-profits.pdf"><img class="size-medium wp-image-162 alignright" style="float:right;" title="pdf" src="http://www.mikevanwinkle.com/wp-content/uploads/2008/08/pdf.gif" alt="" width="142" height="140" /></a></p>
<p>Non-profit organizations are in particular need of solid new media advice. Scarce resources, ironically, can lead both to chronic underspending and chronic overspending on new media.</p>
<p>Some non-profits rely on volunteer or intern labor to build their web presence. To no surprise, these NPs usually end up looking unprofessional. Other NPs, keen on looking professional and afraid of appearing cheap, make the exact opposite mistake. They assume more expensive means more effective. Nothing could be further from the truth. There are plenty of expensive web firms charging an arm and a leg for products that are nearly outdated.</p>
<p>More than any other type of organization, a non-profit needs to maximize the bang it gets for the new media buck. But there are few resources out there to tell them how to do so.</p>
<p>What follows is a list of question to ask yourself about your web site. It isn&#8217;t comprehensive and one could certainly write an entire article about each. However, I hope this list will start you on a path to making solid decisions about your web projects. I have categorized the considerations according to key values that should govern your thinking.</p>
<p><span style="font-size: large;"><strong>Key Value: Adaptability</strong></span></p>
<p><strong>How adaptable is your Content Management System (CMS)? </strong>Choosing a CMS for your web site is like choosing the operating system for your computer; it affects every subsequent decision you make. In the new media world, things can literally change overnight. You may go to bed having installed the most cutting edge CMS around, only to wake up obsolete. In fact, if you stick around long enough, you WILL become obsolete.</p>
<p>As important as satisfying your existing needs is planning for the future. Choose a CMS that will be easy to upgrade, or at least easy to abandon once the something better hits the market.</p>
<p><strong>Can you export your content into XML format?</strong> XML is a web standard that allows your content to be imported into another CMS or read by RSS Aggregators? XML is the language of interactivity.</p>
<p><strong>Is your site designed using Cascading Style Sheets (CSS)?</strong> CSS separates the design of a site from the programming. This means a clever young designer can come along and update the look of your web site without having to reprogram the CMS. This will save you time and money.</p>
<p><strong>Does your CMS make it easy to add and remove modules?</strong> Without paying exorbitant programming fees? Twitter becomes all the rage and you&#8217;d like to add a Twitter feed to your site. Does the CMS allow you easy access to site modules?  Or do you have to call a programmer?</p>
<p>(you can <a href="http://www.cmsmatrix.org/">compare CMS here</a>)</p>
<p><span style="font-size: large;"><strong>Key Value: Usability</strong></span></p>
<p><strong>Is your site designed with tables or Cascading Style Sheets (CSS)?</strong> (I know, I already asked this) Visually impaired individuals use screen readers to access your site. These screen readers actually read the code aloud. Tables are cluttered and disorganized. Many think search engines discriminate against &#8220;ugly&#8221; code. All things being equal, use a tableless design if at all possible.</p>
<p><strong>Do you have a &#8220;call to action&#8221; on the home page?</strong> People like to do things online. They like to click on things, sign up for things, and join things. As a general rule you should try to have something for them to do on your home page.</p>
<p><strong>Does your homepage engage the user?</strong> It&#8217;s tempting for think tanks and other content-producing non-profits to want all their content featured on the home page. But in doing this, they undermine the chief goal of the home page, which is to engage the user. Think about Google&#8217;s home page. There&#8217;s really on one thing to do: search. Yet, it is incredibly effective. Decide how you want to engage your users and then focus on doing it on the home page.</p>
<p>Any &#8220;call to action,&#8221; whether it be an email subscription or a petition, should be prominently placed. If you feature content, limit features to just one of two and use menus to guide the user deeper into the site.</p>
<p><span style="font-size: large;"><strong>Key Value: Search Friendly<br />
</strong></span><strong><br />
Does your site link to other web sites in your &#8220;industry&#8221;?</strong> Links are how you &#8220;exist&#8221; to search engines and other web sites. A web site with no external links might as well not exist.<br />
<strong><br />
Do your articles link keywords to external sites?</strong> If writing an article on Agriculture, you should link key terms in the article to external resources on the issue. Search engines will pick up on linked keywords and in some case give you search priority. Of course, you don&#8217;t want to over-link either, because that will overwhelm the reader.</p>
<p><strong>Are your URLs pretty?</strong> It may seem like a silly question but it&#8217;s an important one. The URL for this article is</p>
<blockquote><p>http://www.mikevanwinkle.com/2008/08/new-media-best-practices-for-non-profits/</p></blockquote>
<p>However, it could just as easily have been something like</p>
<blockquote><p>http://www.mikevanwinkle.com/art_asp/article?id=12353&amp;true.asp</p></blockquote>
<p>If you came across both links in a Google search, which would you click on? You should strive for a system that allows you to create URL strings that include the keywords you want to associate with the article.</p>
<p><strong>Are you using keywords in the right places?</strong> Search engines prioritizes some parts of you site over others. Page titles, headings, image captions and titles, these are all key places to use your keywords. (<a href="http://www.seomoz.org/article/search-ranking-factors">more on SEO factors</a>)</p>
<p><strong>Does you CMS allow the tagging of content?</strong> <a href="http://en.wikipedia.org/wiki/Tags">Tags</a> are a way to inter-relate content within your site and help search engines determine the relevance of your site. Most new CMS have built in tagging, but most older than a couple of years do not.</p>
<p><strong><span style="font-size: large;">Key Value: User-Community</span></strong></p>
<p><strong>Is your CMS open or closed?</strong> This is a critical question. There are advantages to closed proprietary systems and advantages to open-source systems. Proprietary systems tend to be more stable and have a more reliable base of trained programmers. Open-source systems, though, tend to be more innovative and more adaptable than proprietary systems.</p>
<p><strong>Who else is using your CMS?</strong> If you are the only one using your Content Management System, you have a problem. You alone will bear the cost of upgrading and improving that system for future generations of your site. Good CMS have a community of users, all making small innovations that eventually get incorporated into a new version.  Sometimes your CMS community is simply the other clients working with your web firm. In the case of open-source, that community can be millions of people. This one of the factors that has made open-source so popular.</p>
<p>Committing to a CMS is committing to a community of developers. Each community has distinct and idiosyncratic characteristics. Pay attention to the community you are joining, is it vibrant and full of life, or is it depressed and dying? Sometimes it is hard to tell the difference, but the important thing is that you are paying attention.</p>
<p><span style="font-size: large;"><strong>Key Value: Sociability</strong></span><br />
<strong><br />
Where is your blog?</strong> Regardless of what CMS you use, if you are going to blog, you should consider putting it on a separate site using WordPress. There are a number of reasons for this. First, blogging is an extremely fast-changing and interactive endeavor; you want to make sure you are using the best possible blogging platform.</p>
<p>Second, if you&#8217;re blogging you are probably hoping it will bring traffic to your site. If so, why bury it within your existing site? Instead, think of it as a separate web space to link back to your regular &#8220;institutional&#8221; articles. This has the added benefit of increasing the number of inbound links to your web site.</p>
<p>Finally, a blog without comments is a waste of time and energy. But most organizations are afraid to allow comments on their web sites for fear of being associated with the off-color remarks they may contain. By separating the blog off into a separate product, you attain a level of separation between the brand of your organization and the brand of your blog.</p>
<p><strong>Are you serious about being social?</strong> There are a million ways to be involved in social media: Twitter, Facebook, blogging, Digg. The list goes on and on. And just like in the real world, you can&#8217;t fake the interaction you have in these social media. You can&#8217;t go to a party, stand in the corner all night and then expect people to listen to you when you have something to say. You have to actively engage the community. It is very labor intensive, but the pay off can be enormous. Social media isn&#8217;t right for every organization, but if you are going to make it work you have to truly commit to it. Consider making it someone&#8217;s full time job.</p>
<p><strong>Do you understand community?</strong> You can&#8217;t fake community. Community requires sharing, and to build a real community, you have to be willing to share your organization with the participants. There&#8217;s nothing wrong with being unwilling to do this, but be honest with yourself about it. If you aren&#8217;t willing to share, then don&#8217;t waste your time pretending.<br />
<span style="font-size: large;"><strong><br />
Key Value: Vision and Substance</strong></span></p>
<p><strong>Do you have vision and substance?</strong> All the fancy media in the world won&#8217;t make up for a lack of vision and failure to produce a valuable product. If you don&#8217;t have these things in place, don&#8217;t waste your time worrying about new media.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/geek-think/new-media-best-practices-for-non-profits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theme Update: OnStage Theme for Actors v1.1.0</title>
		<link>http://www.mikevanwinkle.com/news/theme-update-onstage-theme-for-actors-v110/</link>
		<comments>http://www.mikevanwinkle.com/news/theme-update-onstage-theme-for-actors-v110/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 14:10:30 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Featured Client]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=125</guid>
		<description><![CDATA[So, my OnStage theme has only been out for a couple weeks and already I&#8217;m releasing a new version. What gives? Well it occurred to me that a few tweeks were needed. For one, the blog had no side bar &#8230; <a href="http://www.mikevanwinkle.com/news/theme-update-onstage-theme-for-actors-v110/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, my OnStage theme has only been out for a couple weeks and already I&#8217;m releasing a new version. What gives? Well it occurred to me that a few tweeks were needed. For one, the blog had no side bar which (a) prevented users from browsing archives and (b) eliminated the natural search juice that a sidebar provides. Also, I noticed that some users were not using the proper sized pictures for their frontpage gallery. This resulted in the smaller pictures aligning left and making the whole site look a little off kilter. I&#8217;ve now centered the home gallery so that, no matter what size image is used, the images will look nice.</p>
<p>The new version can be <a href="http://www.mikevanwinkle.com/themes/onstage-theme-for-actors/">downloaded here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/news/theme-update-onstage-theme-for-actors-v110/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress v. Drupal</title>
		<link>http://www.mikevanwinkle.com/design/content-management/wordpress-v-drupal/</link>
		<comments>http://www.mikevanwinkle.com/design/content-management/wordpress-v-drupal/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 14:59:37 +0000</pubDate>
		<dc:creator>Mike Van Winkle</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=82</guid>
		<description><![CDATA[Ever wonder what the difference is between WordPress and Drupal, and which you should choose. Well, as is always the answer: it depends. Performancing has a good expanation of what it, exactly, it depends on.]]></description>
			<content:encoded><![CDATA[<p>Ever wonder what the difference is between WordPress and Drupal, and which you should choose. Well, as is always the answer: it depends. Performancing has a <a href="http://performancing.com/wordpress/wordpress-and-drupal-compared-pros-and-cons-each-cms">good expanation</a> of what it, exactly, it depends on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikevanwinkle.com/design/content-management/wordpress-v-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
