<?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>Iris Kao Design</title>
	<atom:link href="http://iriskao.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://iriskao.com</link>
	<description>Graphic &#38; web design services for micro and small businesses in Seattle, Bellevue, Kirkland, Redmond, and the Eastside. Good Design is for Everyone.</description>
	<lastBuildDate>Sun, 17 Mar 2013 20:31:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Web Designer&#8217;s Guide to WordPress (A Review)</title>
		<link>http://iriskao.com/?p=625</link>
		<comments>http://iriskao.com/?p=625#comments</comments>
		<pubDate>Wed, 27 Feb 2013 03:43:15 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Bookshelf]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[Jesse Friedman]]></category>
		<category><![CDATA[responsive web design]]></category>
		<category><![CDATA[Web Designer's Guide to WordPress]]></category>
		<category><![CDATA[wordpress code]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=625</guid>
		<description><![CDATA[I&#8217;ve always known I&#8217;m a WP hack, but didn&#8217;t know how much of one until I read Web Designer&#8217;s Guide to WordPress by Jesse Friedman. My old WP theme was modified from the default template so there were many things I didn&#8217;t understand and left alone for safety. Now I know wp_head() action hook in [...]]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=625</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Category Slug of The Post in WordPress</title>
		<link>http://iriskao.com/?p=616</link>
		<comments>http://iriskao.com/?p=616#comments</comments>
		<pubDate>Wed, 20 Feb 2013 18:19:02 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Hints/Tips]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[category slug]]></category>
		<category><![CDATA[wordpress code]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=616</guid>
		<description><![CDATA[I wanted to get the category slug for the current post but calls like single_cat_title() were not usable: Return null unless you are on a category page Can&#8217;t get to the slug string If each of your post has only 1 category, this is the solution: global $post; $categories = get_the_category($post->ID); $post_cat_slug = $categories[0]->slug; Explanation [...]]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=616</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customized Global Variables for WordPress</title>
		<link>http://iriskao.com/?p=609</link>
		<comments>http://iriskao.com/?p=609#comments</comments>
		<pubDate>Wed, 20 Feb 2013 03:59:06 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Hints/Tips]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[customized global variable]]></category>
		<category><![CDATA[wordpress code]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=609</guid>
		<description><![CDATA[Wanted to have one place for certain set of value in my WP site, after many failures, found this to be the easiest way. In functions.php, define and initialize a variable: $GLOBALS['your_var'] = 42; To access the variable in a template file (between php tags): echo $GLOBALS['your_var']]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=609</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best CSS3 Drop Down Menu Tutorial</title>
		<link>http://iriskao.com/?p=568</link>
		<comments>http://iriskao.com/?p=568#comments</comments>
		<pubDate>Wed, 30 Jan 2013 03:30:27 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[html5 shiv]]></category>
		<category><![CDATA[ie hack]]></category>
		<category><![CDATA[modernizer]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=568</guid>
		<description><![CDATA[Avoided drop down menu for a long time since many didn&#8217;t work right. Now I found many good sites to get a ready-to-go CSS style for it. However, I needed to know what&#8217;s going on under the hood, easier on me during debugging. I learn coding by trying things out in stages and found the [...]]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=568</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari Above IE?!</title>
		<link>http://iriskao.com/?p=563</link>
		<comments>http://iriskao.com/?p=563#comments</comments>
		<pubDate>Wed, 09 Jan 2013 19:22:03 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=563</guid>
		<description><![CDATA[I couldn&#8217;t believe my eye when I saw this today. Doing a web site redesign for a client, checking to see how HTML5 and CSS3 I can get with her customers. It was shocking what I pulled up in the Analytics. And no, they are not all from iPhone/iPad. Wow, just can&#8217;t get over it&#8230;]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=563</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pi-Ling Chang Redesign</title>
		<link>http://iriskao.com/?p=550</link>
		<comments>http://iriskao.com/?p=550#comments</comments>
		<pubDate>Mon, 09 Jan 2012 05:47:13 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[business card]]></category>
		<category><![CDATA[flute instructor]]></category>
		<category><![CDATA[ogo]]></category>
		<category><![CDATA[Pi-Ling Chang]]></category>
		<category><![CDATA[piano instructor]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[stamp]]></category>
		<category><![CDATA[tote bag]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=550</guid>
		<description><![CDATA[Pi-Ling Chang has been a piano and flute instructor for many years, before I learned to design. The first time I made her business cards is only because I was better at using computer than she was. The second version came when I was still a student. Now Pi-Ling and I both have many more [...]]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=550</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import RSS Feed to A Facebook Page, The End</title>
		<link>http://iriskao.com/?p=542</link>
		<comments>http://iriskao.com/?p=542#comments</comments>
		<pubDate>Thu, 17 Nov 2011 00:00:22 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Hints/Tips]]></category>
		<category><![CDATA[facebook page]]></category>
		<category><![CDATA[import rss]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=542</guid>
		<description><![CDATA[Still looking to import your blog feed into a Facebook Page? You can stop looking. It&#8217;s no longer available. Here is their answer: We want you to connect with your fans in the most effective ways possible. That&#8217;s why as of September 30th (2011) you&#8217;ll no longer be able to automatically import posts from your [...]]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=542</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>OkiData / InDesign Mystery Solved</title>
		<link>http://iriskao.com/?p=538</link>
		<comments>http://iriskao.com/?p=538#comments</comments>
		<pubDate>Thu, 15 Sep 2011 04:46:39 +0000</pubDate>
		<dc:creator>Iris</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[booklet printing]]></category>
		<category><![CDATA[indesign cs3]]></category>
		<category><![CDATA[okidata]]></category>

		<guid isPermaLink="false">http://iriskao.com/?p=538</guid>
		<description><![CDATA[After much experimenting on my Mysterious InDesign Okidata Issue for printing in booklet format. I finally solved the missing letters/numbers (printed out as crossed rectangles). The problem only happens when I print only odd or even pages. So, if your printer can do duplex printing, you should be able to print straight from InDesign. The [...]]]></description>
		<wfw:commentRss>http://iriskao.com/?feed=rss2&#038;p=538</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
