<?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>Freelance Web Designer - CIPPO Design &#187; Blog</title>
	<atom:link href="http://cippodesign.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://cippodesign.com</link>
	<description>Custom Web Design – WordPress Design – CMS Design, Web Development – PSD to xHTML – PSD to WordPress, SEO plus other services</description>
	<lastBuildDate>Thu, 22 Jul 2010 07:33:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress 3.0 custom taxonomies</title>
		<link>http://cippodesign.com/tutorials/wordpress3/custom-taxonomies.html</link>
		<comments>http://cippodesign.com/tutorials/wordpress3/custom-taxonomies.html#comments</comments>
		<pubDate>Mon, 19 Jul 2010 19:51:46 +0000</pubDate>
		<dc:creator>Cippo</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[taxonomies]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cippodesign.com/?p=457</guid>
		<description><![CDATA[You have to build a website for a restaurant and you have chosen WordPress to do the job. It&#8217;s time to add restaurant&#8217;s products but you have to classify them. Well there&#8217;s a very easy way to do that. What &#8230; <a href="http://cippodesign.com/tutorials/wordpress3/custom-taxonomies.html">Find out more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You have to build a website for a restaurant and you have chosen WordPress to do the job. It&#8217;s time to add restaurant&#8217;s products but you have to classify them. Well there&#8217;s a very easy way to do that.</p>
<p>What products does a restaurant have? Well, I think a regular restaurant has Breakfast, Launch, Dinner, Beverage and Dessert.</p>
<p>Open functions.php from your wordpress theme directory and add the following code:</p>
<pre class="brush: php;">function create_menu_categories() {
 register_taxonomy('menu_type', 'post', array('hierarchical'=&gt;false, 'label'=&gt;'Menu type', 'query_var'=&gt;true, 'rewrite'=&gt;true));
}
add_action('init', 'create_menu_categories', 0);</pre>
<h3>Query for posts, using custom tag</h3>
<p>To display only posts that have a specific tag from your custom taxonomies, place the code <span id="more-457"></span>before <a title="WordPress loop" href="http://codex.wordpress.org/The_Loop" target="_blank">the loop</a>:</p>
<pre class="brush: php;">&lt;?php query_posts(array('menu_type' =&gt; 'dessert', 'showposts' =&gt; 10)); ?&gt;</pre>
<p>You can change <strong>dessert</strong> to any other tag listed in the custom taxonomies and you can change, of course, how many posts to show by changing the number <strong>10</strong> to your number.</p>
]]></content:encoded>
			<wfw:commentRss>http://cippodesign.com/tutorials/wordpress3/custom-taxonomies.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom WordPress 3.0 theme (p1)</title>
		<link>http://cippodesign.com/tutorials/custom-wordpress-3-theme-development-part-1.html</link>
		<comments>http://cippodesign.com/tutorials/custom-wordpress-3-theme-development-part-1.html#comments</comments>
		<pubDate>Thu, 15 Jul 2010 22:08:11 +0000</pubDate>
		<dc:creator>Cippo</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cippodesign.com/?p=380</guid>
		<description><![CDATA[I was thinking to give some help regarding WordPress 3.0 theme development using custom post types and other cool new features so I will show you how to create a custom Wordperss 3.0 portfolio theme. You will be able to &#8230; <a href="http://cippodesign.com/tutorials/custom-wordpress-3-theme-development-part-1.html">Find out more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was thinking to give some help regarding WordPress 3.0 theme development using custom post types and other cool new features so I will show you how to create a custom Wordperss 3.0 portfolio theme.</p>
<p>You will be able to add and manage portfolio items, testimonials, posts thumbnail and more to come.</p>
<p>Warning, design is not included <img src='http://cippodesign.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<h2>How to create a WordPress portfolio theme</h2>
<p>To do this, you have to get your hands dirty <img src='http://cippodesign.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Alright, what do we need to accomplish this? For the beginning we will need to create the following files:<span id="more-380"></span></p>
<ul>
<li>header.php</li>
<li>footer.php</li>
<li>index.php</li>
<li>loop-index.php</li>
<li>style.css</li>
<li>functions.php</li>
<li>front-page.php</li>
<li>page.php</li>
<li>single.php</li>
<li>comments.php</li>
<li>sidebar.php</li>
</ul>
<p>All these files must be placed in a theme directory.</p>
<h3>let&#8217;s name our theme.. portfolish</h3>
<p>Create a folder in wp-content/themes directory, name it portfolish and place there all the files listed above.</p>
<h3>create the header.php file</h3>
<pre class="brush: php;">&lt;?php
/**
 * The Header for our theme.
 *
 * @package WordPress
 * @subpackage Portfolish
 * @since Portfolish version 0.1
 */
?&gt;
&lt;!DOCTYPE html&gt;
&lt;html &lt;?php language_attributes(); ?&gt;&gt;
&lt;head&gt;
 &lt;meta charset=&quot;&lt;?php bloginfo( 'charset' ); ?&gt;&quot; /&gt;
 &lt;title&gt;
&lt;?php // Returns the title based on what is being viewed
 if ( is_single() ) { // single posts
 single_post_title(); echo ' | '; bloginfo( 'name' );
 // The home page or, if using a static front page, the blog posts page.
 } elseif ( is_home() || is_front_page() ) {
 bloginfo( 'name' );
 if( get_bloginfo( 'description' ) )
 echo ' | ' ; bloginfo( 'description' );

 } elseif ( is_page() ) { // WordPress Pages
 single_post_title( '' ); echo ' | '; bloginfo( 'name' );
 } elseif ( is_search() ) { // Search results
 printf( __( 'Search results for %s', 'portfolish' ), '&quot;'.get_search_query().'&quot;' ); echo ' | '; bloginfo( 'name' );
 } elseif ( is_404() ) {  // 404 (Not Found)
 _e( 'Not Found', 'portfolish' ); echo ' | '; bloginfo( 'name' );
 } else if (is_author()) { // author posts
 get_the_author(); echo &quot;Author archives &quot;; echo ' | '; bloginfo( 'name' );
 // The home page or, if using a static front page, the blog posts page.
 } else { // Otherwise:
 wp_title( ' ' ); echo ' | '; bloginfo( 'name' );
 }
 ?&gt;
 &lt;/title&gt;
 &lt;link rel=&quot;profile&quot; href=&quot;http://gmpg.org/xfn/11&quot; /&gt;
 &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;&lt;?php bloginfo('stylesheet_url'); ?&gt;&quot; /&gt;
// Use our own css file for customization
 &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;&lt;?php bloginfo( 'template_url' ); ?&gt;/theme.css&quot; /&gt;
&lt;link rel=&quot;pingback&quot; href=&quot;&lt;?php bloginfo( 'pingback_url' ); ?&gt;&quot; /&gt;
&lt;?php
 /* We add some JavaScript to pages with the comment form
 * to support sites with threaded comments (when in use).
 */
 if ( is_singular() &amp;&amp; get_option( 'thread_comments' ) )
 wp_enqueue_script( 'comment-reply' );

 /* Always have wp_head() just before the closing &lt;/head&gt;
 * tag of your theme, or you will break many plugins, which
 * generally use this hook to add elements to &lt;head&gt; such
 * as styles, scripts, and meta tags.
 */

 wp_head();
?&gt;
&lt;body &lt;?php body_class(); ?&gt;&gt;
&lt;a href=&quot;&lt;?php echo site_url(); ?&gt;&quot; id=&quot;web-portfolio&quot;&gt;
&lt;?php // Returns the title based on what is being viewed
 if ( is_single() ) { // single posts
 single_post_title(); echo ' | '; bloginfo( 'name' );
 // The home page or, if using a static front page, the blog posts page.
 } elseif ( is_home() || is_front_page() ) {
 bloginfo( 'name' );
 if( get_bloginfo( 'description' ) )
 echo ' | ' ; bloginfo( 'description' );

 } elseif ( is_page() ) { // WordPress Pages
 single_post_title( '' ); echo ' | '; bloginfo( 'name' );
 } elseif ( is_search() ) { // Search results
 printf( __( 'Search results for %s', 'portfolish' ), '&quot;'.get_search_query().'&quot;' ); echo ' | '; bloginfo( 'name' );
 } elseif ( is_404() ) {  // 404 (Not Found)
 _e( 'Not Found', 'portfolish' ); echo ' | '; bloginfo( 'name' );
 } else { // Otherwise:
 wp_title( ' ' ); echo ' | '; bloginfo( 'name' );
 }
 ?&gt;
&lt;/a&gt;
&lt;ul id=&quot;wrapper&quot;&gt;
 &lt;li&gt;
 &lt;a href=&quot;&lt;?php echo site_url(); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php echo bloginfo('template_url'); ?&gt;/images/logo.png&quot; alt=&quot;My Web Portfolio&quot;/&gt;&lt;/a&gt;
 &lt;/li&gt;
 &lt;li&gt;
 &lt;?php wp_nav_menu(array('menu'=&gt;'Main Menu','container'=&gt;'', 'menu_class'=&gt;'absolute')); ?&gt;
 &lt;/li&gt;
</pre>
<h3>create the footer.php file</h3>
<pre class="brush: php;">&lt;?php
/**
 * The template for displaying the footer.
 *
 * @package WordPress
 * @subpackage Portfolish
 * @since Portfolish version 0.1
 */
?&gt;
 &lt;li&gt;
 &lt;ul&gt;
 &lt;li id=&quot;copy-design&quot;&gt;&lt;span&gt;Copyright &amp;copy; &lt;a href=&quot;&lt;?php echo site_url(); ?&gt;&quot;&gt;Portfolish&lt;/a&gt; 2010 - &lt;?php echo date('Y'); ?&gt;  | &lt;a href=&quot;&lt;?php echo esc_url( __('http://wordpress.org/', 'portfolish') ); ?&gt;&quot;
 title=&quot;&lt;?php esc_attr_e('Semantic Personal Publishing Platform', 'portfolish'); ?&gt;&quot; rel=&quot;generator&quot;&gt;
 &lt;?php printf( __('Proudly powered by %s.', portfolish'), 'WordPress' ); ?&gt;
 &lt;/a&gt;&lt;/span&gt;
 &lt;li&gt;
 &lt;?php get_sidebar( 'footer' ); ?&gt;
 &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/li&gt;
&lt;/ul&gt;

&lt;?php
 /* Always have wp_footer() just before the closing &lt;/body&gt;
 * tag of your theme, or you will break many plugins, which
 * generally use this hook to reference JavaScript files.
 */

 wp_footer();
?&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>I will show you in the next chapter how to create the loop for index and how to create custom post types.</p>
]]></content:encoded>
			<wfw:commentRss>http://cippodesign.com/tutorials/custom-wordpress-3-theme-development-part-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web design firm vs Freelancer</title>
		<link>http://cippodesign.com/cippo-design/web-design-firm-vs-freelancer.html</link>
		<comments>http://cippodesign.com/cippo-design/web-design-firm-vs-freelancer.html#comments</comments>
		<pubDate>Tue, 13 Jul 2010 09:18:21 +0000</pubDate>
		<dc:creator>Cippo</dc:creator>
				<category><![CDATA[CIPPO Design]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://cippodesign.com/?p=300</guid>
		<description><![CDATA[Why should you choose a freelancer over a web design company? Here are some reasons: Price You would like to pay less for a website? Usually a freelance web designer charges less than a web design firm because he doesn&#8217;t &#8230; <a href="http://cippodesign.com/cippo-design/web-design-firm-vs-freelancer.html">Find out more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Why should you choose a freelancer over a web design company?</p>
<p>Here are some reasons:</p>
<h3>Price</h3>
<p>You would like to pay less for a website? Usually a freelance web designer charges less than a web design firm because he doesn&#8217;t have employees or subcontractors. Usually the freelancer&#8217;s workplace is <span id="more-300"></span>at home but there are situations where a freelancer rents a place to do his job.</p>
<h3>Quality and services</h3>
<p>Freelancers as well as companies want to attract clients offering high-quality services. Everyone has to build its own name on the internet so you can find high-quality work on both sides.</p>
<p>Freelancers tend to specialize in fewer domains so they don&#8217;t have a wide-range of services while a company has to have more services to offer to the clients.</p>
<h3>When to say YES to a web design firm</h3>
<p>When you have a very complex project or you can&#8217;t find the right freelancer to handle your project.</p>
]]></content:encoded>
			<wfw:commentRss>http://cippodesign.com/cippo-design/web-design-firm-vs-freelancer.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simply Profitable website release</title>
		<link>http://cippodesign.com/cippo-design/simply-profitable-website-release.html</link>
		<comments>http://cippodesign.com/cippo-design/simply-profitable-website-release.html#comments</comments>
		<pubDate>Thu, 01 Jul 2010 19:04:57 +0000</pubDate>
		<dc:creator>Cippo</dc:creator>
				<category><![CDATA[CIPPO Design]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cippodesign.com/blog/?p=40</guid>
		<description><![CDATA[Monday, 28th June the website www.simplyprofitable.co.uk was released. What&#8217;s it all about? Simply Profitable is a boutique consultancy which enables successful business owners understand their business’ finances and easily increase profits in their business.]]></description>
			<content:encoded><![CDATA[<p>Monday, 28th June the website <a href="http://www.simplyprofitable.co.uk" target="_blank">www.simplyprofitable.co.uk</a> was released. What&#8217;s it all about?</p>
<p>Simply Profitable is a boutique consultancy which enables successful  business owners understand their business’ finances and easily increase  profits in their business.</p>
]]></content:encoded>
			<wfw:commentRss>http://cippodesign.com/cippo-design/simply-profitable-website-release.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Vs MODx</title>
		<link>http://cippodesign.com/cippo-design/wordpress-vs-modx.html</link>
		<comments>http://cippodesign.com/cippo-design/wordpress-vs-modx.html#comments</comments>
		<pubDate>Thu, 01 Jul 2010 14:50:19 +0000</pubDate>
		<dc:creator>Cippo</dc:creator>
				<category><![CDATA[CIPPO Design]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[modx]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cippodesign.com/blog/?p=14</guid>
		<description><![CDATA[I am waiting for the MODx CMS to release the revolution version. The MODx CMS sounds very promising. You can check the road map at http://svn.modxcms.com/docs/display/revolution/Roadmap There are many saying that wordpress is mainly for blogs while MODx is better &#8230; <a href="http://cippodesign.com/cippo-design/wordpress-vs-modx.html">Find out more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am waiting for the MODx CMS to release the revolution version. The MODx CMS sounds very promising. You can check the road map at <a href="http://svn.modxcms.com/docs/display/revolution/Roadmap" target="_blank">http://svn.modxcms.com/docs/display/revolution/Roadmap</a><br />
There are many saying that wordpress is mainly for blogs while MODx is better for building web pages.<br />
So I downloaded the MODx Revolution 2.0.0-rc-2 and played around a bit. At a first glance it seems complicated but if you spend few minutes with it, things get clearer.<br />
I will keep you updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://cippodesign.com/cippo-design/wordpress-vs-modx.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CIPPO Design got redesigned</title>
		<link>http://cippodesign.com/cippo-design/cippo-design-got-redesigned.html</link>
		<comments>http://cippodesign.com/cippo-design/cippo-design-got-redesigned.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 22:15:42 +0000</pubDate>
		<dc:creator>Cippo</dc:creator>
				<category><![CDATA[CIPPO Design]]></category>
		<category><![CDATA[redesign]]></category>

		<guid isPermaLink="false">http://cippodesign.com/blog/?p=29</guid>
		<description><![CDATA[Hello fellows. After a long wile I finally redesigned my website ( well I started just with the blog ). In my free-time I try to work on my website and upgrade it. The old design was too flat and &#8230; <a href="http://cippodesign.com/cippo-design/cippo-design-got-redesigned.html">Find out more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello fellows. After a long wile I finally redesigned my website ( well I started just with the blog ). In my free-time I try to work on my website and upgrade it.</p>
<p>The old design was too flat and simple. Well I don&#8217;t think it could be better as long as it was designed and developed in under 3 hours. If I have a copy of the old website design? Uhm, you can see it live on www.cippo.ro/blog &#8211; my personal blog which is in Romanian language.</p>
<p>Keep in touch, gotta go to work. I&#8217;ll keep you updated regarding any changes / updates for this blog and not only <img src='http://cippodesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Cheers,</p>
<p>Ciprian</p>
]]></content:encoded>
			<wfw:commentRss>http://cippodesign.com/cippo-design/cippo-design-got-redesigned.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
