<?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>Magento Design and Development &#187; cms</title>
	<atom:link href="http://inchoo.net/tag/cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://inchoo.net</link>
	<description>Magento Design and Magento Development Professionals - Inchoo</description>
	<lastBuildDate>Fri, 10 Sep 2010 10:39:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Magento CMS syntax &#8211; part1</title>
		<link>http://inchoo.net/ecommerce/magento/magento-cms-syntax-part1/</link>
		<comments>http://inchoo.net/ecommerce/magento/magento-cms-syntax-part1/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 22:59:59 +0000</pubDate>
		<dc:creator>Ivan Weiler</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=2505</guid>
		<description><![CDATA[Every Magento user noticed that there is special {{magentocode}} syntax available in cms pages and blocks. We traced a bit to find out which params are available and what exactly they do. As strange as this may sound, processor class that gets called is Mage_Core_Model_Email_Template_Filter located at app/code/core/Mage/Core/Model/Email/Template/Filter.php . There are also some interesting directives [...]]]></description>
			<content:encoded><![CDATA[<p>Every Magento user noticed that there is special {{magentocode}} syntax available in cms pages and blocks. We traced a bit to find out which params are available and what exactly they do.</p>
<p><span id="more-2505"></span></p>
<p>As strange as this may sound, processor class that gets called is Mage_Core_Model_Email_Template_Filter located at app/code/core/Mage/Core/Model/Email/Template/Filter.php .</p>
<p>There are also some interesting directives in superclass Varien_Filter_Template, but if i&#8217;m not mistaken, none of them can be used.</p>
<p>There are six replacement codes  that can be used and each triggers its equivalent Directive function:</p>
<p>skinDirective<br />
mediaDirective<br />
htmlescapeDirective<br />
storeDirective<br />
blockDirective<br />
layoutDirective</p>
<p>I&#8217;ll start with easier and most commonly used and continue with advanced ones in part two of this article.</p>
<p><strong>1. skinDirective</strong></p>
<p>Description: Used to retrieve path of skin folder and its files, theme fallback respected<br />
Example: {{skin url=&#8217;images/image.jpg&#8217; _theme=&#8217;blank&#8217;}}<br />
Synonym: Mage::getDesign()-&gt;getSkinUrl($params['url'], $params)<br />
Params:<br />
url = empty or relative file path<br />
_theme = alternative theme, fallbacks if file not exist<br />
_package = alternative package<br />
_area = alternative area(frontend,adminhtml)<br />
_type, _default etc. = nothing useful, somebody please correct me if i&#8217;m wrong <img src='http://inchoo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>2. mediaDirective</strong></p>
<p>Description: Used to retrieve path of root/media folder and its files<br />
Example: {{media url=&#8217;image.jpg&#8217;}}<br />
Synonym: Mage::getBaseUrl(&#8216;media&#8217;) . $params['url']<br />
Params:<br />
url = empty or relative file path</p>
<p><strong>3. htmlescapeDirective</strong></p>
<p>Description: Used to escape special html chars<br />
Example: {{htmlescape var=&#8217;&lt;a href=&#8221;www.inchoo.net&#8221;&gt;inchoo&lt;/a&gt;&lt;b&gt;inchoo&lt;/b&gt;&lt;i&gt;inchoo&lt;/i&gt;&#8217; allowed_tags=&#8217;b'}}<br />
Synonym: Mage::helper(&#8216;core&#8217;)-&gt;htmlEscape($params['var'], $params['allowed_tags'])<br />
Params:<br />
var = string to escape<br />
allowed_tags = comma-separated list of allowed tags</p>
<p><strong>4. storeDirective</strong></p>
<p>Description: Used to build magento routes and custom urls<br />
Example: {{store url=&#8217;customer/account&#8217; _query_a=&#8217;8&#8242;}}<br />
Synonym: Mage::getUrl($params['url'], $params);<br />
Params:<br />
url = magento routers url<br />
direct_url = normal url, appended to baseurl<br />
_query_PARAMNAME = adds query param, for example _query_a=&#8217;8&#8242; adds a=8 to url<br />
_fragment = adds fragment, for example #comments<br />
_escape = escapes &#8220;,&#8217;,&lt;,&gt;<br />
custom = if using magento route url param, every custom param added will be appended like /a/8/b/10</p>
<p>I probably missed something in this last one, but it&#8217;s very late and i&#8217;m tired of poking through Magento <img src='http://inchoo.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>To be continued ..</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/ecommerce/magento/magento-cms-syntax-part1/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Magento FLIR</title>
		<link>http://inchoo.net/ecommerce/magento/magento-flir/</link>
		<comments>http://inchoo.net/ecommerce/magento/magento-flir/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 20:22:02 +0000</pubDate>
		<dc:creator>Ivan Weiler</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=2481</guid>
		<description><![CDATA[Facelift Image Replacement (or FLIR, pronounced fleer) is an image replacement script that dynamically generates image representations of text on your web page in fonts that otherwise might not be visible to your visitors. Let&#8217;s see how it behaves in Magento. 1. Download FLIR from FLIR homepage. I was using latest 1.2 stable for this [...]]]></description>
			<content:encoded><![CDATA[<p>Facelift Image Replacement (or FLIR, pronounced fleer) is an image replacement script that dynamically generates image representations of text on your web page in fonts that otherwise might not be visible to your visitors. Let&#8217;s see how it behaves in Magento.</p>
<p><span id="more-2481"></span></p>
<p>1. Download FLIR from <a href="http://facelift.mawhorter.net/" target="_blank">FLIR homepage</a>. I was using latest 1.2 stable for this article because of simplicity, but if you try you&#8217;ll find out that 2.0 beta also works great but requires little more configuration.</p>
<p>2. Unpack FLIR content (cache,fonts,etc.) inside skin/frontend/default/default/facelift<br />
I think it makes perfect sense to put it into skin folder.</p>
<p>3. Open app/design/frontend/yourpackage/yourtheme/template/page/html/head.phtml and append</p>
<p>&lt;script language=&#8221;javascript&#8221; src=&#8221;&lt;?php echo $this-&gt;getSkinUrl(&#8216;facelift/flir.js&#8217;) ?&gt;&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
document.observe(&#8220;dom:loaded&#8221;, function() {<br />
FLIR.init({ path: &#8216;&lt;?php echo $this-&gt;getSkinUrl(&#8216;facelift/&#8217;) ?&gt;&#8217; }, new FLIRStyle({ mode: &#8216;wrap&#8217; }) );<br />
FLIR.auto();<br />
});<br />
&lt;/script&gt;</p>
<p>If your php error reporting isn&#8217;t disabled add error_reporting(0); somewhere on top of config-flir.php. This is main config file from which you can define options and custom fonts, so examine it.</p>
<p>Refresh your Magento store and you <a href="http://inchoo.net/wp-content/uploads/2009/06/magento-flir-screenshot.jpg" target="_blank" rel="lightbox[2481]">should see the result</a>.</p>
<p>flir.js can also be alternatively included from layout files inside head block<br />
&lt;reference name=&#8221;head&#8221;&gt;<br />
&lt;action method=&#8221;addItem&#8221;&gt;&lt;type&gt;skin_js&lt;/type&gt;&lt;name&gt;facelift/flir.js&lt;/name&gt;&lt;/action&gt;<br />
&lt;/reference&gt;</p>
<p>There is nice <a href="http://facelift.mawhorter.net/quick-start/" target="_blank">Quick Start Guide</a> and <a href="http://docs.facelift.mawhorter.net/" target="_blank">Documentation</a> available from <a href="http://facelift.mawhorter.net/" target="_blank">FLIR homepage</a>, so i won&#8217;t go in details on some advanced FLIR settings, but here are few examples:</p>
<p>//pass selectors as comma separated list<br />
FLIR.auto(&#8216;h5,h4&#8242;);<br />
//pass an array of selectors<br />
FLIR.auto( [ 'h4', 'h5' ] );<br />
//replace manually with custom options<br />
FLIR.replace( &#8216;div.box h4&#8242; , new FLIRStyle({ mode: &#8216;wrap&#8217; , css: {&#8216;font-family&#8217;:'arial&#8217;} }) );<br />
//prototype way<br />
$$(&#8216;div.box h4&#8242;).each( function(el) { FLIR.replace(el);  } );</p>
<p>Cya.</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/ecommerce/magento/magento-flir/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple random banner rotator in Magento using static blocks</title>
		<link>http://inchoo.net/ecommerce/magento/simple-random-banner-rotator-in-magento-using-static-blocks/</link>
		<comments>http://inchoo.net/ecommerce/magento/simple-random-banner-rotator-in-magento-using-static-blocks/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 12:33:56 +0000</pubDate>
		<dc:creator>Tomas Novoselic</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[blocks]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=1534</guid>
		<description><![CDATA[This is my first post here and I&#8217;ll write about my first challenge regarding Magento since I came to work at Inchoo. As title says I&#8217;ll show you how to implement simple random banner rotation functionality in Magento using static blocks. First of all, upload images you want to use in &#8220;/skin/frontend/YOUR_INTERFACE/YOUR_THEME/images/&#8221; In admin panel [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first post here and I&#8217;ll write about my first challenge regarding Magento since I came to work at Inchoo.</p>
<p>As title says I&#8217;ll show you how to implement simple random banner rotation functionality in Magento using static blocks.<span id="more-1534"></span></p>
<p>First of all, upload images you want to use in &#8220;<strong>/skin/frontend/YOUR</strong><strong>_INTERFACE</strong><strong>/YOUR_THEME/images/</strong>&#8221;</p>
<p>In admin panel add N static blocks (&#8220;CMS-&gt;Static Blocks-&gt;Add new block&#8221;)</p>
<p>For identifier field use something like this:</p>
<pre class="brush: php">
SomeBannerIdentifierName_1
SomeBannerIdentifierName_2
SomeBannerIdentifierName_3
...
SomeBannerIdentifierName_N
</pre>
<p>For each content use this:</p>
<pre class="brush: php">&lt;a href=&quot;ADDRESS_YOU_WANT_TO_USE&quot;&gt;&lt;img src=&quot;{{skin url=images/media/IMAGE_YOU_WANT_TO_USE.jpg}}&quot; alt=&quot;Some alt text&quot;  /&gt;&lt;/a&gt;
</pre>
<p><em>Please note that you are not restricted only to images, you could use text, video or whatever you want here, but I&#8217;ll focus on images with links as title says.</em></p>
<p>Now when all is set, make new file called banner_rotator.phtml in  &#8220;<strong>/app/design/frontend/YOUR_INTERFACE/YOUR_THEME/template/callouts/banner_rotator.phtml</strong>&#8221;</p>
<p>And use this code inside:</p>
<pre class="brush: php">
&lt; ?php
echo $this-&gt;getLayout()-&gt;createBlock(&#039;cms/block&#039;)-&gt;setBlockId(&#039;SomeBannerIdentifierName_&#039;.mt_rand(1, N))-&gt;toHtml() ?&gt;
</pre>
<p>*<em>Make sure you replace &#8220;N&#8221; with highest number of your static block</em></p>
<p>In order to show this block, you should be familiar with Magento layouts.<br />
Since that is out of scope for this article, I&#8217;ll show you how to put it below the content on cms pages.</p>
<p>Open &#8220;<strong>/app/design/frontend/YOUR</strong><strong>_INTERFACE</strong><strong>/YOUR_THEME/layout/cms.xml</strong>&#8221;</p>
<p>[*] Put this line:</p>
<pre class="brush: php">
&lt;block type=&quot;core/template&quot; name=&quot;home.banner.rotator&quot; template=&quot;callouts/banner_rotator.phtml&quot;/&gt;
</pre>
<p>Find this:</p>
<pre class="brush: php">
&lt;cms_page&gt;
&lt;reference name=&quot;content&quot;&gt;
&lt;block type=&quot;cms/page&quot; name=&quot;cms_page&quot;/&gt;

P U T  [*] H E R E  ! ! !

&lt;/reference&gt;
&lt;/cms_page&gt;
</pre>
<p>Unfortunately I can&#8217;t be more specific so feel free to ask me anything.</p>
<p>UPDATE:</p>
<p>If you want this to work for specific page such as homepage do this:</p>
<p>Instead of here <strong>/app/design/frontend/YOUR</strong><strong>_INTERFACE</strong><strong>/YOUR_THEME/layout/cms.xml</strong><br />
put this:</p>
<pre class="brush: php">
&lt;reference code=&quot;content&quot;&gt;
&lt;block type=&quot;core/template&quot; name=&quot;home.banner.rotator&quot; template=&quot;callouts/banner_rotator.phtml&quot;/&gt;
&lt;/reference&gt;
</pre>
<p>into your Admin panel&#8217;s CMS->Pages->Your page->Design->Layout Update XML field<br />
Everything else is the same&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/ecommerce/magento/simple-random-banner-rotator-in-magento-using-static-blocks/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Custom Magento CMS page layout</title>
		<link>http://inchoo.net/ecommerce/magento/custom-cms-page-layout/</link>
		<comments>http://inchoo.net/ecommerce/magento/custom-cms-page-layout/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 15:35:59 +0000</pubDate>
		<dc:creator>Ivan Weiler</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=1192</guid>
		<description><![CDATA[Last week I had a request to add new custom layout for few cms pages in one Magento shop. It&#8217;s really useful for different static pages of your shop. First create extension with only config file in it: app/code/local/Inchoo/AdditionalCmsPageLayouts/etc/config.xml &#60;?xml version="1.0"?&#62; &#60;config&#62; &#60;global&#62; &#60;cms&#62; &#60;layouts&#62; &#60;custom_static_page_one&#62; &#60;label&#62;Custom static page 1&#60;/label&#62; &#60;template&#62;page/custom-static-page-1.phtml&#60;/template&#62; &#60;/custom_static_page_one&#62; &#60;/layouts&#62; &#60;/cms&#62; &#60;/global&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I had a request to add new custom layout for few cms pages in one Magento shop. It&#8217;s really useful for different static pages of your shop.  <span id="more-1192"></span>First create extension with only  config file in it:  app/code/local/Inchoo/AdditionalCmsPageLayouts/etc/config.xml</p>
<pre>&lt;?xml version="1.0"?&gt;
&lt;config&gt;
 &lt;global&gt;
  &lt;cms&gt;
   &lt;layouts&gt;
    &lt;custom_static_page_one&gt;
     &lt;label&gt;Custom static page 1&lt;/label&gt;
     &lt;template&gt;page/custom-static-page-1.phtml&lt;/template&gt;
    &lt;/custom_static_page_one&gt;
   &lt;/layouts&gt;
  &lt;/cms&gt;
 &lt;/global&gt;
&lt;/config&gt;</pre>
<p>Then activate it:  app/etc/modules/Inchoo_AdditionalCmsPageLayouts.xml</p>
<pre>&lt;?xml version="1.0"?&gt;
&lt;config&gt;
 &lt;modules&gt;
  &lt;Inchoo_AdditionalCmsPageLayouts&gt;
   &lt;codePool&gt;local&lt;/codePool&gt;
   &lt;active&gt;true&lt;/active&gt;
  &lt;/Inchoo_AdditionalCmsPageLayouts&gt;
 &lt;/modules&gt;
&lt;/config&gt;</pre>
<p>Add your page/custom-static-page-1.phtml template file (or copy some default one for start) and you&#8217;re done <img src='http://inchoo.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   There is also <a href="http://www.magentocommerce.com/wiki/adding_cms_layout_templates" target="_blank">tutorial about this on Magento Wiki</a>. However i don&#8217;t like approach of duplicating and overriding Mage files from /local, if it can be avoided, so i decided to write this small and useful example of adding or overriding default Magento settings through separated config files. And yes, Magento values can be overridden this way.  Default layouts config can be found in app/code/core/Mage/<span class="search_hit">Cms</span>/etc/config.xml along with used xml code structure, so check it out.  Thank you for listening!</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/ecommerce/magento/custom-cms-page-layout/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Application Architecture How To</title>
		<link>http://inchoo.net/tools/application-architecture-how-to/</link>
		<comments>http://inchoo.net/tools/application-architecture-how-to/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 20:31:21 +0000</pubDate>
		<dc:creator>Branko Ajzele</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=1144</guid>
		<description><![CDATA[Knowing how to program does not mean you know how to develop. Once you reach the point where you know most, if not all, ins and outs of your programming language, then it&#8217;s time to move on. Move on to stuff like programming patterns and application architecture (design). These terms are basically language independent, meaning [...]]]></description>
			<content:encoded><![CDATA[<p>Knowing how to program does not mean you know how to develop. Once you reach the point where you know most, if not all, ins and outs of your programming language, then it&#8217;s time to move on. Move on to stuff like programming patterns and application architecture (design). These terms are basically language independent, meaning if you are good at application architecture and know your way around common programming patterns then you reach the point where programming language is almost irrelevant. Good and extensible architecture is good no matter what programming language you use.<span id="more-1144"></span></p>
<p>Internet is full of &#8220;your language sucks, mine is better&#8221;, &#8220;your language framework sucks, mine is better&#8221;. To be honest, I&#8217;m sick of it. The way I see it; C#, python, php, ruby, java&#8230; are all great and powerful languages. Using one over other will not make you write great application just like that. There is only one thing I consider advantage in web development, and that is using interpreted language over compiled one. This however is merely my preference.</p>
<p>Here&#8217;s a link to some pretty useful material on application architecture, <a href="http://www.codeplex.com/AppArchGuide/Release/ProjectReleases.aspx?ReleaseId=20586">Application Architecture Guide 2.0</a>. Architecture Guide 2.0 is about designing applications on the .NET Platform.</p>
<p>Here is another one for web apps, <a href="http://apparch.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=19802">Web Architecture Pocket Guide</a>.</p>
<p>I&#8217;m a PHP developer, however I like to throw a few lines of code in C# from time to time. Although books are related to Microsoft .Net platform, if you are not short sighted (in terms of technology), I&#8217;m sure you will find these books useful reading whatever platform you might be using.</p>
<p><object width="432" height="364" data="http://images.soapbox.msn.com/flash/soapbox1_1.swf" type="application/x-shockwave-flash"><param name="id" value="qfkcr44k" /><param name="flashvars" value="c=v&amp;v=e615c682-0b89-4c90-8b31-d7b5dbf40283&amp;ifs=true&amp;fr=shared" /><param name="src" value="http://images.soapbox.msn.com/flash/soapbox1_1.swf" /><param name="allowfullscreen" value="true" /></object>&lt;a href=&#8221;http://video.msn.com/?playlist=videoByUuids:uuids:e615c682-0b89-4c90-8b31-d7b5dbf40283&amp;#038;showPlaylist=true&#8221; mce_href=&#8221;http://video.msn.com/?playlist=videoByUuids:uuids:e615c682-0b89-4c90-8b31-d7b5dbf40283&amp;amp;showPlaylist=true&#8221; target=&#8221;_new&#8221; title=&#8221;Train the Trainer &#8211; Application Architecture Guide 2.0&#8243;&gt;Video: Train the Trainer &#8211; Application Architecture Guide 2.0&lt;/a&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/tools/application-architecture-how-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: advantages and disadvantages?</title>
		<link>http://inchoo.net/wordpress/wordpress-as-cms/</link>
		<comments>http://inchoo.net/wordpress/wordpress-as-cms/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 19:21:58 +0000</pubDate>
		<dc:creator>Tomislav Bilic</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=72</guid>
		<description><![CDATA[Couple of days ago I posted a question to LinkedIn Q&#38;A. It was for those individuals/companies who use WordPress to run their main site. I was interested to know why do they find WordPress to be their chosen one CMS. The users were supposed to name top 3 key elements in WP that they find [...]]]></description>
			<content:encoded><![CDATA[<p>Couple of days ago I posted a <a title="Wordpress as CMS?" href="http://www.linkedin.com/answers/technology/web-development/TCH_WDD/308438-15378406" target="_blank">question to LinkedIn Q&amp;A</a>. It was for those individuals/companies who use WordPress to run their main site. I was interested to know why do they find <a title="Wordpress as CMS" href="http://inchoo.net/services/custom-wordpress-development/">WordPress to be their chosen one CMS</a>. The users were supposed to name top 3 key elements in WP that they find most important for your site.  That was the easy part to most of them. Harder part was to name top 3 key elements they miss in WP, but have a feeling it would be important for their site.</p>
<p>There were some really interesting replies.</p>
<p><span id="more-72"></span></p>
<h2>Advantages:</h2>
<ul>
<li>It&#8217;s free</li>
<li>Fast to setup</li>
<li>Easy to learn</li>
<li>Lots of plugins and templates available so you don&#8217;t need to be a PHP guru or designer to have a nice looking site with lots of features.</li>
<li>Easy to modify page templates allowing you to customize the presentation layers to your heart content</li>
<li>Large and active open source community community of people developing add-ons, plugins, themes frequently</li>
<li>Easy to host with simple requirements</li>
</ul>
<h2>Disadvantages:</h2>
<ul>
<li> Many of the themes have a tendency to look the same or similar.</li>
<li>PHP&#8217;s track record for security is pretty bad.</li>
<li>Database queries may be very heavy</li>
<li>It isn&#8217;t a full CMS product &#8211; which is fine for a lot of sites &#8211; but if your site is moving a long way away from something based around a blog then you might find it starts to creak a bit!</li>
</ul>
<p><a title="Wordpress as CMS?" href="http://www.linkedin.com/answers/technology/web-development/TCH_WDD/308438-15378406" target="_blank">http://www.linkedin.com/answers/technology/web-development/TCH_WDD/308438-15378406</a></p>
<p>Many of the people think that WordPress is still just for blogging and if you want some decent CMS, you should consider <a title="Drupal as WordPress alternative" href="http://drupal.org/" target="_blank">Drupal</a>. This quote summarizes those thoughts:</p>
<blockquote><p>Most of the disadvantages come in when someone tries to warp it outside of being a blog, when they stack on a ton of plugins that try to make WordPress take the place of Joomla or Drupal. It doesn&#8217;t. When people try to make it do that, it does it to a lower performance level, and has more sustainability problems.</p></blockquote>
<p>What are your thoughts about this topic. Feel free to post the comment here or if you are a LinkedIn user, you can reply there.</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/wordpress/wordpress-as-cms/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
