<?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>Papertree Design &#187; WordPress</title> <atom:link href="http://papertreedesign.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" /><link>http://papertreedesign.com</link> <description>Web Design and Development</description> <lastBuildDate>Thu, 03 May 2012 11:17:02 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>FullFoto Version 1.1 Released</title><link>http://papertreedesign.com/fullfoto-version-1-1-released/</link> <comments>http://papertreedesign.com/fullfoto-version-1-1-released/#comments</comments> <pubDate>Sun, 22 May 2011 12:56:26 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1347</guid> <description><![CDATA[We&#8217;ve released version 1.1 of the FullFoto theme for WordPress, head on over to Papertree Labs to check out the details or run through the demo to see what Full Foto has in store. There are quite a few improvements and a handful of new features in this update, we&#8217;re looking forward to feedback on [...]]]></description> <content:encoded><![CDATA[<p>We&#8217;ve released version 1.1 of the FullFoto theme for WordPress, head on over to <a href="http://papertreelabs.com/version-1-1/">Papertree Labs</a> to check out the details or run through the <a href="http://demo.papertreelabs.com/full-foto/">demo</a> to see what Full Foto has in store. There are quite a few improvements and a handful of new features in this update, we&#8217;re looking forward to feedback on this one!</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/fullfoto-version-1-1-released/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Using WordPress 3.1 Post Formats</title><link>http://papertreedesign.com/using-wordpress-3-1-post-formats/</link> <comments>http://papertreedesign.com/using-wordpress-3-1-post-formats/#comments</comments> <pubDate>Wed, 23 Feb 2011 18:34:02 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1318</guid> <description><![CDATA[A few weeks back I was struggling with the thought of moving jeremyjaymes.com back to WordPress from Tumblr. While I love the Tumblr platform, I wasn&#8217;t quite sure if it was the best solution for what I&#8217;d like to do with the site moving forward. With the release of 3.1 looming I realized that I [...]]]></description> <content:encoded><![CDATA[<p>A few weeks back I was struggling with the thought of moving jeremyjaymes.com back to WordPress from Tumblr. While I love the Tumblr platform, I wasn&#8217;t quite sure if it was the best solution for what I&#8217;d like to do with the site moving forward. With the release of 3.1 looming I realized that I could find the flexibility I needed and utilize &#8220;post formats&#8221; to replicate some of the tumblr functionality I&#8217;d be leaving behind.</p><p>Decision made, I jumped into the latest nightly build and got cracking. To get the transition underway I would only need to scratch the surface of what&#8217;s possible with post formats but I thought sharing what I did might be helpful to others.</p><p>First off I needed to add theme support and register my post formats.</p><pre><code>
// Add post formats
add_theme_support( 'post-formats', array( 'aside', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video', 'audio' ) );
</code></pre><p>The above code snippet got dropped into my functions.php. Since I also decided to jump into html5 support in this transition I started with the <a href="http://wordpress.org/extend/themes/toolbox">Toolbox</a> theme by Automattic so the above code was actually added to the function <code>toolbox_theme_setup</code>.</p><p>Once that was done I was ready to start utilizing post formats in my template files. I knew that one of the post formats I was sure to use was that registered above called &#8220;links&#8221;. I wanted these particular posts to function a lot like Tumblr link posts in that the title of the post became the link to the off-site resource rather than a permalink to the actual post.</p><p>The next thing I need to do was open up loop.php (see Toolbox theme, loop.php outputs the loop). The standard entry title for this theme is formatted something like this:</p><pre><code>
&lt;h2 class=&quot;entry-title&quot;&gt; &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( &#39;Permalink to %s&#39;, &#39;toolbox&#39; ), the_title_attribute( &#39;echo=0&#39; ) ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
</code></pre><p>What I added was this:</p><pre><code>&lt;?php if( has_post_format('link') ) : ?&gt;

     &lt;h3 class=&quot;entry-title link&quot;&gt;&lt;span class=&quot;permalink&quot;&gt;&amp;infin;&lt;/span&gt; &lt;a href=&quot;&lt;?php echo get_post_meta($post-&gt;ID, 'link', true); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;

&lt;?php else : ?&gt;

    &lt;h2 class=&quot;entry-title&quot;&gt;&lt;span class=&quot;permalink&quot;&gt;&amp;rarr;&lt;/span&gt; &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( 'Permalink to %s', 'toolbox' ), the_title_attribute( 'echo=0' ) ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;

&lt;?php endif; ?&gt;</code></pre><p><code>if( has_post_format('link') )</code> Checks to see if the post has a post format attached to it, if it has the post format &#8220;link&#8221; it will use the formatting I&#8217;ve designated. You&#8217;ll also notice that the actual link is generate through the use of a custom field. So on the post admin end I enter a custom field key of &#8220;link&#8221; and value equal to the url of the actual link which then wraps the post title and creates the link to the offsite resource. (I also have to designate this particular posts format as a link, see below.)</p><p><img src="http://papertreedesign.com/wp-content/uploads/2011/02/formats.jpg" border="0" alt="formats.jpg" width="289" height="226" /></p><p>One other rather nice thing to note is that the post_class now contains a new class .format-link which would allow you to target link posts specifically via css. (If you view the source you&#8217;ll also notice format-standard, format-quote and so on.)</p><p>That&#8217;s it, I&#8217;m now able to continue posting in a manner similar to that of my previous Tumblr site while using WordPress for various other reasons. I&#8217;ve done a few other things with it which you&#8217;ll likely be able to pick out, but for the purpose of this article I&#8217;ve kept it short and just touched on the basics rather than go into everything I&#8217;ve done. You can see it in action on <a href="http://jeremyjaymes.com">http://jeremyjaymes.com</a>.</p><p><em>Good news, I&#8217;ve also just upgraded to the stable 3.1 release and everything seems to be in good functioning order.</em></p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/using-wordpress-3-1-post-formats/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>The Full Foto Theme Released, Yes, Finally</title><link>http://papertreedesign.com/the-full-foto-theme-released-yes-finally/</link> <comments>http://papertreedesign.com/the-full-foto-theme-released-yes-finally/#comments</comments> <pubDate>Thu, 23 Sep 2010 20:23:09 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1254</guid> <description><![CDATA[It took a lot longer than I expected but it was worth the wait. Yesterday evening, along with launching a new venture called Papertree Labs, I released Full Foto a portfolio theme for WordPress. Neat, What is Full Foto? Full Foto is a WordPress theme originally built with the idea that it would be used [...]]]></description> <content:encoded><![CDATA[<p>It took a lot longer than I expected but it was worth the wait.</p><p>Yesterday evening, along with launching a new venture called Papertree Labs, I released Full Foto a portfolio theme for WordPress.</p><p><a href="http://papertreelabs.com" title="Get Full Foto a portfolio theme for WordPress"><img src="http://papertreedesign.com/wp-content/themes/papertree_8_2/images/full_foto.jpg" alt="The Full Foto theme for WordPress" /></a></p><h3>Neat, What is Full Foto?</h3><p>Full Foto is a WordPress theme originally built with the idea that it would be used as a portfolio theme of sorts, specifically, for photography. Since first creating it as a child theme of The Charlene Theme, it has undergone quite a transformation. So much so that I decided to break away from Charlene and develop it on it&#8217;s own but basing it on the same code structure.</p><p>Full Foto, in it&#8217;s current state will have quite a few more unique uses I believe, keeping in mind that the typical user will be looking to create a portfolio of sorts.</p><p>Full Foto now allows for the insertion of video in place of the large full width image. (Video is currently limited to the new iframe embed codes from Vimeo and YouTube.)</p><p>Full Foto also allows you to create a dedicated &ldquo;Portfolio&rdquo; page using a combination of custom post types, custom taxonomies, a few custom templates and the great jQuery Masonry plugin from David DeSandro. <a href="http://demo.papertreelabs.com/full-foto/work/">Have a look.</a></p><p>Overall I made sure to keep it simple, easy to use and focused on your content.</p><h3>Some History</h3><p>A few articles you may be interested in if you are wondering how Full Foto started.</p><ul><li>The Beginning: <a href="http://papertreedesign.com/full-foto-a-wordpress-child-theme-built-on-charlene/">Full Foto, A WordPress Child Theme</a></li><li><a href="http://papertreedesign.com/full-foto-theme-sneak-peak/">A Sneak Peek</a></li></ul><h3>Get Full Foto</h3><p>You can demo the theme and read more about it at <a href="http://papertreelabs.com" title="Papertree Labs">Papertreelabs.com</a>. If it seems like a good fit, go ahead and grab a copy for a special release price of $15!</p><p><em>I dedicated quite a bit of time to the creation of both Full Foto and Charlene and have therefore decided to attach a modest price tag to the theme. Sales of the theme will allow me to dedicate more time to support and development of both Full Foto and Charlene.</em></p><p>Enjoy!</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/the-full-foto-theme-released-yes-finally/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Full Foto Theme Sneak Peek</title><link>http://papertreedesign.com/full-foto-theme-sneak-peak/</link> <comments>http://papertreedesign.com/full-foto-theme-sneak-peak/#comments</comments> <pubDate>Tue, 24 Aug 2010 17:02:29 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1228</guid> <description><![CDATA[A sneak peak at the soon to be released Full Foto WordPress theme. A simple, easy to use theme, built with your portfolio in mind.]]></description> <content:encoded><![CDATA[<p>&rarr; Full Foto is now available at <a href="http://papertreelabs.com">Papertree Labs</a></p><p>Full Foto a theme for WordPress, finally! It has taken me a lot longer to get around to completing this theme than I had hoped. (Almost done, not quite ready, I promise.) It&#8217;s also taken me quite a bit longer than planned to figure out how I am going to go about releasing it. We are almost there &#8211; Full Foto will be released via Papertree Labs, a new little &#8220;add-on&#8221; I&#8217;ve had in the works and it will be released as a parent theme rather than the earlier planned child theme of Charlene. During initial development several factors came about, making it clear that parent theme might be the better route. Look at the bright side, this means you can build child themes off of Full Foto. The theme will however run off of the same basic &#8220;framework&#8221; and is still born from Charlene so if you are hesitant about purchasing it you can always give Charlene a run to see if it meets your standard.</p><p>Papertree Labs isn&#8217;t quite ready and the demo site isn&#8217;t all that it needs to be but I can share a few details and even let you see a few shots. As mentioned above the theme will not be a Charlene Child theme. The theme will have a special custom post type and the ability to create a portfolio page because of it. The theme will still have the full width images that you may have seen in that post oh so long ago but it will be a slightly modified format from what you may remember. All images will run quite easily off the built in WordPress &ldquo;thumbnail&rdquo; functionality. Finally I have decided to add the option to add a navigation menu if you so choose. I mean, how else are you going to get to that portfolio goodness I mentioned above?</p><h3>The sneak peak screen shots:</h3><p><img src="http://papertreedesign.com/wp-content/uploads/2010/08/full-foto-article.jpg" alt="" title="full-foto-article" width="520" height="461" class="alignleft size-full wp-image-1229" /><br /> <strong>Nice large full width images in each article, optional of course but the same Full Foto you might remember from a while back.</strong></p><p><img src="http://papertreedesign.com/wp-content/uploads/2010/08/full-foto-portfolio.jpg" alt="" title="full-foto-portfolio" width="510" height="479" class="alignleft size-full wp-image-1230" /><br /> <strong>The new portfolio page option.</strong></p><p>Finally I struggled with exactly how I would go about releasing this now that it was separate from Charlene. Papertree Labs was the first step. The second step was to decide on pricing as the plan has always been to release with a moderate price tag attached ($12 to $15) &#8211; right now I am leaning towards $15. This will help to compensate me somewhat for the time put into both Full Foto as well as Charlene, it will also help me to focus on improvements and support for both themes, both of which I view as extremely necessary to a successful theme.</p><p>Would love to hear your thoughts below.</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/full-foto-theme-sneak-peak/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Charlene Theme Version 0.3 &#8211; Full Foto Update</title><link>http://papertreedesign.com/charlene-theme-version-0-3-full-foto-update/</link> <comments>http://papertreedesign.com/charlene-theme-version-0-3-full-foto-update/#comments</comments> <pubDate>Wed, 11 Aug 2010 11:53:21 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1223</guid> <description><![CDATA[Just dropped a new version of the Charlene Theme with one minor fix for threaded comments found in the previous beta version, grab a copy. Also in regards to Full Foto please read this: &#8594; Full Foto is now available at Papertree Labs The new version of Full-Foto is near release ready, I am looking [...]]]></description> <content:encoded><![CDATA[<p>Just dropped a new version of the Charlene Theme with one minor fix for threaded comments found in the previous beta version, <a href="http://papertreedesign.com/themes/" title="Get the Charlene Theme">grab a copy</a>.</p><p>Also in regards to Full Foto please read this:</p><p>&rarr; Full Foto is now available at <a href="http://papertreelabs.com">Papertree Labs</a></p><p><em>The new version of <a href="http://papertreedesign.com/full-foto-a-wordpress-child-theme-built-on-charlene/">Full-Foto</a> is near release ready, I am looking for a photographer/artist that is interested in displaying their work on the theme demo pages. If you are interested please contact me at jeremy[at]papertreedesign.com. This would of course include full attribution and a free theme.</em></p><p>As always get back to me with any comments, questions or quirks you find in the theme, thanks!</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/charlene-theme-version-0-3-full-foto-update/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Charlene and Thumbnail Support</title><link>http://papertreedesign.com/charlene-and-thumbnail-support/</link> <comments>http://papertreedesign.com/charlene-and-thumbnail-support/#comments</comments> <pubDate>Tue, 13 Jul 2010 11:29:56 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1210</guid> <description><![CDATA[Well it has been delayed as I am sure anyone who has come to the site looking for the Charlene Theme has figured out. I took down the download link around 2 weeks ago hoping to push out the update rather quickly but&#8230; Let&#8217;s just say a large site, a few weeks and the inner [...]]]></description> <content:encoded><![CDATA[<p>Well it has been delayed as I am sure anyone who has come to the site looking for the Charlene Theme has figured out. I took down the download link around 2 weeks ago hoping to push out the update rather quickly but&hellip;</p><p>Let&#8217;s just say a large site, a few weeks and the inner workings of Expression Engine have taken over my life. All is not lost I have continued to work on Charlene, getting in all of the planned updates as quickly as possible. I want to say thanks to the few people that have emailed me looking for the theme, I appreciate it, it&#8217;s coming soon and it&#8217;s still free!</p><p>Moving on&hellip;</p><p>After careful consideration and a boat load of request I have decided to add <strong>thumbnail support</strong> to the coming release of Charlene. It will be a theme option, disabled by default and as of right now you will need to edit the size and run the regenerate plugin should you decide that the default 150&#215;150 I have set is not to your liking. I hope that this helps out a lot of you who have asked for thumbnail support, it may get better in the future.</p><p>Coming soon I promise! (If you have any questions you can email me at themesupport[at]papertreedesign)</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/charlene-and-thumbnail-support/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>On WordPress 3.0, Charlene and the Release of Full Foto</title><link>http://papertreedesign.com/on-wordpress-3-0-charlene-and-the-release-of-full-foto/</link> <comments>http://papertreedesign.com/on-wordpress-3-0-charlene-and-the-release-of-full-foto/#comments</comments> <pubDate>Thu, 17 Jun 2010 18:54:34 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1207</guid> <description><![CDATA[The delay in release of WordPress 3.0 was providing me some extra and you&#8217;d think it would have been enough but&#8230; it&#8217;s finally here, ah well. Congrats to the WordPress team and everyone who has been working hard to contribute to this version. I know I have been working with it testing, playing and breaking [...]]]></description> <content:encoded><![CDATA[<p>The delay in release of WordPress 3.0 was providing me some extra and you&#8217;d think it would have been enough but&hellip; it&#8217;s finally here, ah well. Congrats to the WordPress team and everyone who has been working hard to contribute to this version. I know I have been working with it testing, playing and breaking things since the very start. I am definitely looking forward to the direction that WordPress 3.0 is pushing us!</p><p>That said I suppose I need to let everyone know when they can expect an update to Charlene. Upon digging in to what I had planned to be a minor upgrade to take advantage of a few 2.9 and 3.0 features as well as a few requests, I came to the conclusion that I just wasn&#8217;t happy with where it was at. Since I first released the theme, not only has WordPress improved drastically but so has my skill with WordPress. The theme needs to catch up and thus what was once a minor upgrade will become a major upgrade.</p><p>The new plan is to launch the update as soon as possible and no later than next week! Trust me it will include welcome improvements and updates.</p><p>Immediately following the update I will be launching Full Foto. After long and careful thought I have decided that Full Foto will be released as a child theme bundled with Charlene with a price tag of $12, a very modest price but one that will help allow me to continue development on both Charlene and Full Foto. The details to come later, both will remain licensed under the GPL.</p><p>That out of the way, Papertree Design will also be launching a very very small venture into the commercial theme world with just a few other themes I have on the drawing board. More details to arrive on that as well.</p><p>That&#8217;s all for the update, if you have any questions please feel free to drop a comment or shoot me an email.</p><p> &rarr; Full Foto is now available at <a href="http://papertreelabs.com">Papertree Labs</a></p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/on-wordpress-3-0-charlene-and-the-release-of-full-foto/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Thanks to Everyone Who Has Downloaded the Charlene Theme</title><link>http://papertreedesign.com/thanks-to-everyone-who-has-downloaded-the-charlene-theme/</link> <comments>http://papertreedesign.com/thanks-to-everyone-who-has-downloaded-the-charlene-theme/#comments</comments> <pubDate>Sat, 01 May 2010 12:20:06 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1196</guid> <description><![CDATA[It&#8217;s been a busy few months around here, I have not taken the time to post much if at all since the start of the new year, but I wanted to take a few moments to say thank you to everyone who has downloaded Charlene. We just passed up the 530 mark and are fast [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s been a busy few months around here, I have not taken the time to post much if at all since the start of the new year, but I wanted to take a few moments to say thank you to everyone who has downloaded <a href="http://papertreedesign.com/themes">Charlene</a>. We just passed up the 530 mark and are fast approaching 600 downloads! Sure that&#8217;s not a huge accomplishment when compared to some of the larger theme companies out there but it&#8217;s pretty darn good considering I don&#8217;t do much in the way of marketing any of these themes.</p><p>Of course it wouldn&#8217;t be fair not to mention that I owe a large part of this sudden exposure to <a href="http://www.bestwpthemes.com/charlene/">Best WordPress Themes</a>. Thanks to Best WordPress Themes for picking up Charlene and putting it in front of so many people.</p><p>I also want to thank everyone that has left a comment or suggestion on the theme, as well as those of you who have come to me via email for support. Every question leads to an improvement for future updates.</p><p>Speaking of which I have obviously been keeping an eye on the coming WP 3.0, trying to figure out how all of that will effect Charlene, and yes I have started working on updates.</p><p>In addition to these updates, I have also started in on making the theme available for easy translation. This will be my first time around trying to tackle localization, so if anyone has a few pointers they would like to lend please leave a comment. I am slowly struggling through it.</p><p>Finally I received yet another comment regarding the Charlene Child Theme <em>Full Foto</em>. That&#8217;s about the 4th or 5th request so I have promised to start working on something similar for release by the end of May.</p><p>Thanks again, as always your comments are welcome.</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/thanks-to-everyone-who-has-downloaded-the-charlene-theme/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>WordPress 3.0 &#8211; The Little Things</title><link>http://papertreedesign.com/wordpress-3-0-the-little-things/</link> <comments>http://papertreedesign.com/wordpress-3-0-the-little-things/#comments</comments> <pubDate>Sat, 27 Feb 2010 04:05:05 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1183</guid> <description><![CDATA[Maybe it&#8217;s just me but little improvements like this really excite me about the coming WordPress 3.0 release. I realize that there are a lot of exciting new features, additions and big changes being made in WordPress 3.0, but I am especially glad that the developers are paying attention to minor usability improvements like this. [...]]]></description> <content:encoded><![CDATA[<p>Maybe it&#8217;s just me but little improvements like this really excite me about the coming WordPress 3.0 release. I realize that there are a lot of exciting new features, additions and big changes being made in WordPress 3.0, but I am especially glad that the developers are paying attention to minor usability improvements like this.</p><p>Oh yeah, the improvement, well here is a screenshot. The new “Privacy On” notification I noticed today when I upgraded to the latest nightly. This let&#8217;s me know that the state of my privacy settings and will be especially helpful for those of us that develop WordPress sites. Last thing you need to do is forget to set the proper privacy settings and get yourself knocked out of Google.</p><p><a href="http://papertreedesign.com/wp-content/uploads/2010/02/privacy.jpg"><img class="size-full wp-image-1184 alignnone" title="privacy" src="http://papertreedesign.com/wp-content/uploads/2010/02/privacy.jpg" alt="" width="244" height="91" /></a></p><p>Like I said maybe it&#8217;s just me.</p><p>On that note I am really interested to see if the issue mentioned in this <a href="http://nicolasgallagher.com/using-html5-elements-in-wordpress-post-content/">recent post</a> concerning the wpautop function will be addressed in the coming release. I noticed that it is something that has been mentioned previously in Trac and I think it would go a long way in adding support for HTML5 moving forward.</p><p>So many things to look forward to in WordPress 3.0, so many new ideas to explore.</p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/wordpress-3-0-the-little-things/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Charlene Theme Update</title><link>http://papertreedesign.com/charlene-theme-update/</link> <comments>http://papertreedesign.com/charlene-theme-update/#comments</comments> <pubDate>Mon, 22 Feb 2010 12:32:15 +0000</pubDate> <dc:creator>Jeremy</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://papertreedesign.com/?p=1168</guid> <description><![CDATA[It&#8217;s been a long time in the making. Over the weekend I finally decided to wrap things up and release an update to the Charlene WordPress Theme with some much needed improvements. I tried to focus on two areas for this update, improvements in base typography (at least in my opinion) and additions/changes that will [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s been a long time in the making. Over the weekend I finally decided to wrap things up and release an update to the Charlene WordPress Theme with some much needed improvements.</p><p>I tried to focus on two areas for this update, improvements in base typography (at least in my opinion) and additions/changes that will make the creation of child themes based on Charlene a bit easier moving forward. (see <a href="http://papertreedesign.com/full-foto-a-wordpress-child-theme-built-on-charlene/">Full Foto &#8211; A WordPress Child Theme Built on Charlene</a>)</p><p>Please see <a href="http://papertreedesign.com/themes/theme-update-0-2/">Theme Update 0.2</a>, posted on Papertree Themes for full details regarding the update. Please direct all comments to that post or feel free to drop me an email with any questions.</p><p>Full Foto will be released as a child theme in the near future, other additional child themes are planned. <em>Just for fun.</em></p> ]]></content:encoded> <wfw:commentRss>http://papertreedesign.com/charlene-theme-update/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc (User agent is rejected)
Database Caching 1/55 queries in 1.848 seconds using apc
Object Caching 811/929 objects using disk: basic

Served from: papertreedesign.com @ 2012-05-17 09:09:57 -->
