<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Kristin Falkner</title>
	
	<link>http://www.kristinfalkner.com</link>
	<description>Showcase of Los Angeles-based freelance developer Kristin Falkner</description>
	<lastBuildDate>Sun, 01 Jan 2012 01:33:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Twenty8Designs" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="twenty8designs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>A Super Helpful Function</title>
		<link>http://www.kristinfalkner.com/2011/08/a-super-helpful-function/</link>
		<comments>http://www.kristinfalkner.com/2011/08/a-super-helpful-function/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 03:56:10 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.kristinfalkner.com/?p=209</guid>
		<description><![CDATA[Often coding custom WordPress themes, I am very familiar with the WordPress template hierarchy. One super helpful function that relates to this area deals with having child categories inherit the template of their parent category. This is the function: function child_force_category_template($template) { $cat = get_query_var('cat'); $category = get_category ($cat); if ( file_exists(TEMPLATEPATH . '/category-' . [...]]]></description>
			<content:encoded><![CDATA[<p>Often coding custom WordPress themes, I am very familiar with the WordPress template hierarchy. One super helpful function that relates to this area deals with having child categories inherit the template of their parent category. This is the function:</p>
<pre><code>function child_force_category_template($template) {

$cat = get_query_var('cat');
$category = get_category ($cat);

if ( file_exists(TEMPLATEPATH . '/category-' . $category->cat_ID . '.php') ) {
$cat_template = TEMPLATEPATH . '/category-' . $category ->cat_ID . '.php';
}
elseif ( file_exists(TEMPLATEPATH . '/category-' . $category->category_parent . '.php') ) {
$cat_template = TEMPLATEPATH . '/category-' . $category->category_parent . '.php';
}
else{
$cat_template = $template;
}
return $cat_template;
}
add_action('category_template', 'child_force_category_template');</code></pre>
<p>It should be placed in your theme&#8217;s functions.php file. By default, child categories do not inherit any custom theme of the parent category so if you do any template customizing, you would need to duplicate the template for each category ID. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/08/a-super-helpful-function/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>I Heart Gravity Forms</title>
		<link>http://www.kristinfalkner.com/2011/08/i-heart-gravity-forms/</link>
		<comments>http://www.kristinfalkner.com/2011/08/i-heart-gravity-forms/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 01:47:00 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=195</guid>
		<description><![CDATA[As I&#8217;ve mentioned, forms are one of my least favorite things to hand-code. It&#8217;s not that they&#8217;re hard. It&#8217;s more that they&#8217;re tedious. At least, they feel that way to me. That&#8217;s why I&#8217;m always super interested in any WordPress plug-ins that deal with forms: they just make my life easier. I&#8217;m a bit late [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=174718" target="_blank"><img class="alignnone size-full wp-image-196" title="Gravity Forms" src="http://www.twenty8designs.com/wp-content/uploads/2011/08/gravityforms.jpg" alt="" width="565" height="200" /></a></p>
<p>As I&#8217;ve mentioned, forms are one of my least favorite things to hand-code. It&#8217;s not that they&#8217;re hard. It&#8217;s more that they&#8217;re tedious. At least, they feel that way to me. That&#8217;s why I&#8217;m always super interested in any WordPress plug-ins that deal with forms: they just make my life easier. I&#8217;m a bit late to the party on this one, but I am loving Gravity Forms. Previously, I had been using Contact Form 7 as my WordPress go-to form plug-in of choice, but I had repeatedly heard good things about Gravity Forms so I finally checked it out. Needless to say, I now own a Gravity Forms developer license.</p>
<p>The ease of creating multi-page forms, the conditional logic, the entry management: beautiful. Pre-populated state dropdowns? Nice. There are plenty of free WordPress plug-ins out there that can help you do forms, but this one is definitely worth springing for. I&#8217;m a fan!</p>
<p><a title="Gravity Forms Plugin for WordPress" href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=174718"><img class="aligncenter" style="border: none;" src="http://gravityforms.s3.amazonaws.com/banners/468x60_2.gif" alt="Gravity Forms Contact Form Plugin for WordPress" width="468" height="60" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/08/i-heart-gravity-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I’m speaking at WordCamp LA</title>
		<link>http://www.kristinfalkner.com/2011/08/im-speaking-at-wordcamp-la/</link>
		<comments>http://www.kristinfalkner.com/2011/08/im-speaking-at-wordcamp-la/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 20:18:00 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=192</guid>
		<description><![CDATA[Last year, I had the pleasure of being a part of a panel at WordCamp LA that discussed designing for WordPress. This year, I&#8217;ll be involved in WordCamp LA again, but speaking about theme development, with an emphasis on PSD to WordPress. If you&#8217;re not familiar with WordCamp, it&#8217;s a conference dedicated solely to WordPress. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-193" title="WordCamp LA" src="http://www.twenty8designs.com/wp-content/uploads/2011/08/wordcamp.jpg" alt="" width="565" height="200" /></p>
<p>Last year, I had the pleasure of being a part of a panel at WordCamp LA that discussed designing for WordPress. This year, I&#8217;ll be involved in WordCamp LA again, but speaking about theme development, with an emphasis on PSD to WordPress.</p>
<p>If you&#8217;re not familiar with WordCamp, it&#8217;s a conference dedicated solely to WordPress. It often has multiple tracks: one geared towards WordPress users and another for WordPress developers.</p>
<p>You can check out more about WordCamp by <a href="http://www.wordcamp.org" target="_blank">clicking here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/08/im-speaking-at-wordcamp-la/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Words That Make Me Happy: Thank you.</title>
		<link>http://www.kristinfalkner.com/2011/07/words-that-make-me-happy-thank-you/</link>
		<comments>http://www.kristinfalkner.com/2011/07/words-that-make-me-happy-thank-you/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 04:21:31 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[Freelance Life]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=165</guid>
		<description />
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-166" title="thankyou" src="http://www.twenty8designs.com/wp-content/uploads/2011/07/thankyou.jpg" alt="" width="565" height="200" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/07/words-that-make-me-happy-thank-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best $29 I’ve spent in awhile</title>
		<link>http://www.kristinfalkner.com/2011/07/the-best-29-ive-spent-in-awhile/</link>
		<comments>http://www.kristinfalkner.com/2011/07/the-best-29-ive-spent-in-awhile/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 23:30:34 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[Other Tech Stuff]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=159</guid>
		<description><![CDATA[Apple released Mac OS X Lion yesterday and I diligently dished out my $29 to upgrade. Possibly the best $29 I&#8217;ve spent in awhile as Mac OS X Lion is pretty dang awesome. Favorite features: 1) The new Mail functionality: Thank you for finally grouping my emails just like on the iPhone. I love not [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-160" title="maclion" src="http://www.twenty8designs.com/wp-content/uploads/2011/07/maclion.jpg" alt="" width="565" height="200" /></p>
<p>Apple released Mac OS X Lion yesterday and I diligently dished out my $29 to upgrade. Possibly the best $29 I&#8217;ve spent in awhile as Mac OS X Lion is pretty dang awesome. Favorite features:</p>
<p>1) The new Mail functionality: Thank you for finally grouping my emails just like on the iPhone. I love not having to scroll back through my Inbox to find the last email from the conversation.</p>
<p>2) Resume functionality: Close a movie file mid-playback? Next time you open Quicktime, you&#8217;re right where you left off. Close Photoshop with a certain PSD open? It&#8217;ll be there next time you open Photoshop. So nice.</p>
<p>3) Launchpad: The most frequently used applications sit on the dock, of course, but if you want to view your other applications, this is a much quicker way to do so than on Snow Leopard and older Mac OS X versions.</p>
<p>4) The new touch gestures: Takes a bit to get used to (I think I&#8217;ve scrolled in the wrong direction 5000 times now) but once you get the hang of it, super awesome and much more control.</p>
<p>There&#8217;s plenty more to be excited about, as well, like Versions, AirDrop and Mission Control. All in all, a really impressive leap for a mere $29. I recommend taking it!</p>
<p>However, if you are a developer and you use Coda, make sure you update Coda after upgrading to Lion as it needs a patch to upload files correctly under Lion. But it&#8217;s a super quick update to make and then you&#8217;re good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/07/the-best-29-ive-spent-in-awhile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Your WordPress Website</title>
		<link>http://www.kristinfalkner.com/2011/07/backup-your-wordpress-website/</link>
		<comments>http://www.kristinfalkner.com/2011/07/backup-your-wordpress-website/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 17:22:31 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=155</guid>
		<description><![CDATA[I&#8217;ve had clients ask me for a good solution to back up their WordPress-based website. Unlike a standard HTML-based site, WordPress stores its content in a database. That being said, it&#8217;s important to have a solution that does not just back up the theme files, but also the database itself. The solution I always recommend [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had clients ask me for a good solution to back up their WordPress-based website. Unlike a standard HTML-based site, WordPress stores its content in a database. That being said, it&#8217;s important to have a solution that does not just back up the theme files, but also the database itself. The solution I always recommend is <a href="http://www.webdesigncompany.net/automatic-wordpress-backup/" target="_blank">Automatic WordPress Backup</a>.</p>
<p>All you need to run the Automatic WordPress Backup is an <a href="http://aws.amazon.com/s3/" target="_blank">Amazon S3</a> storage account &#8212; this is where your backup files will be placed. Amazon S3 is not free, but the cost is very, very minimal, especially for housing something as important as your site backups.</p>
<p>As the plug-in website notes, Automatic WordPress Backup:</p>
<ul>
<li>Captures your ENTIRE site (WordPress database, themes, plugins, uploaded files and settings files), which means minimal downtime if you need to restore.</li>
<li>Totally automated backup means you spend more time getting stuff done and less time fighting your tools.</li>
<li>Minimal configuration. Set it and forget it.</li>
<li>Uses <a href="http://aws.amazon.com/s3/" target="_blank">Amazon S3</a>, which means you get industrial reliability at minimal cost.</li>
<li>Manually trigger backups so you can have some peace of mind before you install a new plugin or a WordPress update.</li>
</ul>
<div>There may be other backup solutions out there, but this is one I&#8217;ve had great experiences with and I think is very easy to get up and running on your website.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/07/backup-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.2 released!</title>
		<link>http://www.kristinfalkner.com/2011/07/wordpress-3-2-released/</link>
		<comments>http://www.kristinfalkner.com/2011/07/wordpress-3-2-released/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 01:00:48 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=150</guid>
		<description><![CDATA[Happy 4th of July! WordPress has given everyone a 4th of July present with the release of WordPress 3.2 One of the things I was most looking forward to with this release was the change in appearance of the WordPress admin area. As I mentioned in a previous post, I had frequently turned to Ozh [...]]]></description>
			<content:encoded><![CDATA[<p>Happy 4th of July! WordPress has given everyone a 4th of July present with the release of WordPress 3.2 One of the things I was most looking forward to with this release was the change in appearance of the WordPress admin area. As I mentioned in a previous post, I had frequently turned to Ozh Drop Down Admin plug-in to create a better-looking WordPress admin navigation for clients. However, with the 3.2 revamp, I doubt I&#8217;ll be relying on that plug-in any longer as I do think the new admin navigation is a big improvement. The focus of this fifteenth major release of WordPress was to make it faster and lighter, which is always a great thing. Check out what else is new in WordPress 3.2:</p>
<p><object width="400" height="224" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://s0.videopress.com/player.swf?v=1.02" /><param name="wmode" value="direct" /><param name="seamlesstabbing" value="true" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="overstretch" value="true" /><param name="flashvars" value="guid=ac07H291" /><embed width="400" height="224" type="application/x-shockwave-flash" src="http://s0.videopress.com/player.swf?v=1.02" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=ac07H291" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/07/wordpress-3-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Justin Guarini Website</title>
		<link>http://www.kristinfalkner.com/2011/06/justin-guarini-website/</link>
		<comments>http://www.kristinfalkner.com/2011/06/justin-guarini-website/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 17:05:18 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=140</guid>
		<description><![CDATA[One of the more heavily commented on items in my portfolio is the website for Justin Guarini. It&#8217;s featured in the WordPress Showcase and a lot of people email me mentioning that they like how it doesn&#8217;t look like a typical WordPress website and its use of fullscreen backgrounds. While this particular project is a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.justinguarini.com" target="_blank"><img class="alignnone size-full wp-image-141" title="jglayout" src="http://www.twenty8designs.com/wp-content/uploads/2011/06/jglayout.jpg" alt="" width="565" height="200" /></a></p>
<p>One of the more heavily commented on items in my portfolio is the website for <a href="http://www.justinguarini.com" target="_blank">Justin Guarini</a>. It&#8217;s featured in the WordPress Showcase and a lot of people email me mentioning that they like how it doesn&#8217;t look like a typical WordPress website and its use of fullscreen backgrounds. While this particular project is a completely custom WordPress theme, there are themes out there that have similar elements that might appeal to you if you like Justin&#8217;s website. One in particular is a theme I found called <a href="http://graphpaperpress.com/members/go.php?r=95687&amp;i=l1" target="_blank">Widescreen</a> on Graph Paper Press, which also uses full-screen backgrounds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/06/justin-guarini-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Santa Monica Meetup Group</title>
		<link>http://www.kristinfalkner.com/2011/06/wordpress-santa-monica-meetup-group/</link>
		<comments>http://www.kristinfalkner.com/2011/06/wordpress-santa-monica-meetup-group/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 21:20:35 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=136</guid>
		<description><![CDATA[Yesterday I attended a meet up with the WordPress Santa Monica Meetup Group. If you are in LA and you work with WordPress, you should check it out. It&#8217;s a great opportunity to interact with other people who work with WordPress and you can get questions answered, talk about plug-ins or themes, or anything else. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I attended a meet up with the <a href="http://www.meetup.com/WordPress-Santa-Monica-Meetup-Group/" target="_blank">WordPress Santa Monica Meetup Group</a>. If you are in LA and you work with WordPress, you should check it out. It&#8217;s a great opportunity to interact with other people who work with WordPress and you can get questions answered, talk about plug-ins or themes, or anything else. It&#8217;s definitely not just limited to developers, even casual users are welcome. Looking forward to the next event!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/06/wordpress-santa-monica-meetup-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Favorite WordPress Plug-Ins</title>
		<link>http://www.kristinfalkner.com/2011/06/my-favorite-wordpress-plug-ins/</link>
		<comments>http://www.kristinfalkner.com/2011/06/my-favorite-wordpress-plug-ins/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 21:42:03 +0000</pubDate>
		<dc:creator>Kristin Falkner</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.twenty8designs.com/?p=124</guid>
		<description><![CDATA[There are a ton of WordPress plug-ins out there. WordPress has such a great community of developers behind it that almost anything you are looking to do, there is a plug-in to do it. Granted, there are a few rotten apples in the bunch: plug-ins with outdated code that doesn&#8217;t work with the latest WordPress [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.twenty8designs.com/wp-content/uploads/2011/06/magicfields.jpg" alt="" title="magicfields" width="565" height="200" class="alignnone size-full wp-image-128" /></p>
<p>There are a ton of WordPress plug-ins out there. WordPress has such a great community of developers behind it that almost anything you are looking to do, there is a plug-in to do it. Granted, there are a few rotten apples in the bunch: plug-ins with outdated code that doesn&#8217;t work with the latest WordPress versions, plug-ins that seem to always conflict with other plug-ins, plug-ins that cause a high level of queries that slow down your site, etc. But there are also plug-ins out there that are AMAZING. Here are my five favorite plug-ins that I always find myself implementing on client projects:</p>
<p>#1) <a href="http://wordpress.org/extend/plugins/magic-fields/" target="_blank">Magic Fields</a></p>
<p>Magic Fields is probably my all-time favorite WordPress plug-in from a development standpoint. In WordPress 3.0, custom post types were introduced and a lot of people suggested that this might cause Magic Fields to become less relevant but I haven&#8217;t felt that way at all. While I love WordPress, I&#8217;m not crazy about the UI of their custom fields and the process of setting up custom post types. Magic Fields just makes things pretty and really simplifies setting up custom fields and post types. The admin side of managing complex front-end features stays super clean and straightforward. Anything above the most basic of custom WordPress themes, and sometimes even then, I always turn to Magic Fields.</p>
<p>#2) <a href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">NextGen Gallery</a></p>
<p>For photo galleries, this plug-in can&#8217;t be beat. There are some really great add-on plug-ins that use this plug-in as a base to easily incorporate things like sliders, as well. There is a lot to love about NextGen, especially the amount of control it gives the user. Anything from editing the portion of the image that is the thumbnail, resizing images, changing the image order, adding titles and more can easily be accomplished within this plug-in&#8217;s interface.</p>
<p>#3) <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All-in-One SEO</a></p>
<p>It&#8217;s the most popular plug-in on WordPress.org for a reason. I always use this on projects to manage META tags and other SEO benefits.</p>
<p>#4) <a href="http://wordpress.org/extend/plugins/contact-form-7/" target="_blank">Contact Form 7</a><br />
I HATE coding forms. It&#8217;s just a tedious process that isn&#8217;t very fun. But this plug-in makes forms a breeze. Granted, sometimes this plug-in doesn&#8217;t play nice with the other plug-ins.  I&#8217;ve seen it cause some jQuery conflicts, especially. (TIP: I like to put </p>
<pre>define ('WPCF7_LOAD_JS', false );</pre>
<p>in wp-config.php on any install running CF7 that prevents it from loading jQuery if I&#8217;m running the plug-in with other jQuery elements)</p>
<p>#5) <a href="http://wordpress.org/extend/plugins/custom-admin-branding/" target="_blank">Custom Admin Branding</a></p>
<p>I really like branding the administration area of WordPress on client projects and this plug-in makes it easy to do so. I often like pairing this with <a href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/" target="_blank">Ozh Admin Drop-Down Menu</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kristinfalkner.com/2011/06/my-favorite-wordpress-plug-ins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

