<?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>Theme Thesis</title>
	<atom:link href="http://www.themethesis.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.themethesis.com</link>
	<description>Thesis Skins and Customizations</description>
	<lastBuildDate>Sun, 26 Sep 2010 17:25:15 +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>Using WordPress&#8217; the_post_thumbnail with Lightbox</title>
		<link>http://www.themethesis.com/tutorials/post_thumbnail_lightbox/</link>
		<comments>http://www.themethesis.com/tutorials/post_thumbnail_lightbox/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 17:24:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2386</guid>
		<description><![CDATA[Note: This is not a Thesis tutorial. When Thesis launched, WordPress didn&#8217;t have post images, so Thesis had its own method of using them and it was great. Now that WordPress has native support for them, I prefer to use that. To learn how to use the_post_thumbnail with Thesis, check out this article or this [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/post_thumbnail_lightbox/" title="Permanent link to Using WordPress&#8217; the_post_thumbnail with Lightbox"><img class="post_image alignnone" src="http://themethesis.s3.amazonaws.com/wp-content/uploads/2010/09/post-thumbnail-lightbox.jpg" width="580" height="190" alt="Using the_post_thumbnail with Lightbox" /></a>
</p><p class="note">Note: This is not a <a href="http://themethesis.com/go/thesis">Thesis</a> tutorial.  When Thesis launched, WordPress didn&#8217;t have post images, so Thesis had its own method of using them and it was great. Now that WordPress has native support for them, I prefer to use that. To learn how to use the_post_thumbnail with Thesis, check out <a href="http://www.blogingbloging.com/thesis-theme-support-post-thumbnail-images">this article</a> or <a href="http://thesis-blogs.com/wordpress-post-thumbnails-thesis-theme/">this article</a>.</p>
<p>WordPress 2.9 brought us the_post_thumbnail, which lets us set a photo for a post without using custom fields.  It works really well and it&#8217;s one of my favourite newer features. The post thumbnail works with WordPress cropping functions and can be called at various sizes.  Now, wouldn&#8217;t it be cool to show just a thumbnail, and then have a bigger photo open in a Lightbox script when clicked? </p>
<p><span id="more-2386"></span><br />
I thought it would be, and figured it would be easy, but there was one problem:</p>
<p>Most Lightbox scripts work by placing a link to your full-sized image and adding <em>rel=&#8221;lightbox&#8221;</em> to it. When you call the_post_thumbnail, WordPress doesn&#8217;t just spit out the URL, but also a whole lot of other code. We need to get rid of that first, and then rock and roll.</p>
<p>Here&#8217;s a quick tutorial on <strong>using the post_thumbnail with Lightbox</strong>:</p>
<ol>
<li>
<h3>Add post_thumbnail support</h3>
<p>Add the following to your theme&#8217;s functions.php file, if it&#8217;s not already there: </p>
<pre class="brush: php">
&lt;?php add_theme_support( &#039;post-thumbnails&#039; ); ?&gt;
</pre>
<p>Now when you go to a post page, you&#8217;ll see an option on the bottom of the right hand side that allows you to set a post thumbnail.  Easy enough. Let&#8217;s move onwards.</p>
<li>
<h3>Install Lightbox</h3>
<p>There are lots of lightbox scripts out there, and this isn&#8217;t a tutorial on how to work them.  I like to work with <a href="http://www.digitalia.be/software/slimbox">Slimbox</a> because it&#8217;s tiny and uses jQuery, but the original <a href="http://www.huddletogether.com/projects/lightbox2/">Lightbox</a> script is the most popular.  Whichever script you choose, install it according to its instructions.</li>
<li>
<h3>Add your post_thumbnail</h3>
<p>Now here comes the tricky part. In your single.php or wherever you want to place the image, put:</p>
<pre class="brush: php">
&lt;?php
$thumbnail_id=get_the_post_thumbnail($post-&gt;ID);
preg_match (&#039;/src=&quot;(.*)&quot; class/&#039;,$thumbnail_id,$link);
echo $link[1];
?&gt;
&lt;a href=&quot;&lt;?php echo $link[1]; ?&gt;&quot; rel=&quot;lightbox&quot;&gt;&lt;?php the_post_thumbnail(&#039;thumbnail&#039;); ?&gt;&lt;/a&gt;
</pre>
<p>This strips out all the extra HTML and gives us just the link, allowing us to append <em>rel=&#8221;lightbox&#8221;</em> to it.  Awesome.  You can change &#8220;thumbnail&#8221; to whatever size you want the thumbnail to be.
</li>
</ol>
<p>And that&#8217;s it. Lightboxy goodness.</p>
<p>Source:<br />
<a href="http://polymathworkshop.com/shoptalk/2010/03/19/get-the_post_thumbnail-direct-path-for-wordpress/">Get the_post_thumbnail direct path for WordPress</a></p>
<p>Further reading on post_thumbnails:<br />
<a href="http://codex.wordpress.org/Function_Reference/the_post_thumbnail">Function Reference/the post thumbnail</a><br />
<a href="http://justintadlock.com/archives/2009/11/16/everything-you-need-to-know-about-wordpress-2-9s-post-image-feature">Everything you need to know about WordPress 2.9&#8242;s post image feature</a><br />
<a href="http://wpengineer.com/1930/the-ultimative-guide-for-the_post_thumbnail-in-wordpress-2-9/">The Ultimate Guide For the_post_thumbnail in WordPress 2.9</a><br />
<a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/">New in WordPress 2.9: Post Thumbnail Images</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/post_thumbnail_lightbox/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>9 Blogs to Help You Master the Thesis WordPress Theme</title>
		<link>http://www.themethesis.com/roundups/thesis-blogs/</link>
		<comments>http://www.themethesis.com/roundups/thesis-blogs/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 20:16:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Roundups]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2364</guid>
		<description><![CDATA[So you just picked up a copy of the wonderful Thesis WordPress theme framework, installed it, and don&#8217;t quite know where to begin. Sure you can read some basic tutorials and instructions and get a simple site going, but we all know Thesis is more powerful than that. That&#8217;s why I&#8217;ve compiled this list of [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/roundups/thesis-blogs/" title="Permanent link to 9 Blogs to Help You Master the Thesis WordPress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/09/thesis-blogs.png" width="580" height="190" alt="Post image for 9 Blogs to Help You Master the Thesis WordPress Theme" /></a>
</p><p>So you just picked up a copy of the wonderful <a href="http://themethesis.com/go/thesis">Thesis WordPress theme framework</a>, installed it, and don&#8217;t quite know where to begin.  Sure you can read some basic tutorials and instructions and get a simple site going, but we all know <a href="http://themethesis.com/go/thesis">Thesis</a> is more <em>powerful</em> than that. That&#8217;s why I&#8217;ve compiled this list of 9 awesome blogs to read and subscribe to that will be sure to <strong>make you a Thesis master in no time</strong>.</p>
<p><span id="more-2364"></span></p>
<p class="note">Note: You should always have a solid WordPress foundation before working on a specialized framework, so make sure to check out some <a href="http://themethesis.com/roundups/wordpress-development-blogs/">WordPress development blogs</a> before you dive into these.</p>
<h2><a href="http://diythemes.com/thesis/tutorials/">DIY Themes Blog</a></h2>
<p><a href="http://diythemes.com/thesis/tutorials"><img src="http://themethesis.com/wp-content/uploads/2010/09/diy-themes-blog.png" alt="DIY Themes Blog" /></a></p>
<p>Sometimes the best place for information is the source.  Luckily, the DIY Themes crew have been hard at work pumping out tutorials and tips, and you can find them here. This site is rather recent, but has a great selection of awesome tutorials already.  If you want beefy, in-depth tutorials, the official site is the place to be.</p>
<p><a href="http://diythemes.com/thesis/tracking-scripts/">How to Set up Tracking Scripts with Thesis</a><br />
<a href="http://diythemes.com/thesis/robots-meta-tags/">How to Use the Robots Meta Tags in Thesis</a><br />
<a href="http://diythemes.com/thesis/generate-affiliate-links/">How to Generate Affiliate Links to Any Page on DIYThemes</a></p>
<h2><a href="http://diythemes.com/thesis/rtfm/">DIY Themes Answers</a></h2>
<p><a href="http://diythemes.com/thesis/rtfm"><img src="http://themethesis.com/wp-content/uploads/2010/09/diy-themes-answers.png" alt="DIY Themes Answers" /></a></p>
<p>The DIY Themes Answers site has a tonne of quick tutorials and snippets.  If you need to do something quick and just aren&#8217;t sure how, you&#8217;ll find the answers here a lot of the time.</p>
<h2><a href="http://www.billerickson.net/">Bill Erickson</a></h2>
<p>Bill Erickson is a great designer who blogs and teaches about WordPress. He has released an 18 part tutorial on Thesis, which will teach you everything from the basics to the really advanced. His other WordPress articles are great to read too!</p>
<p><a href="http://billerickson.net"><img src="http://themethesis.com/wp-content/uploads/2010/09/bill-erickson.png" alt="Bill Erickson" /></a><br />
<a href="http://www.billerickson.net/thesis-wordpress-full-width-menu/">Thesis Tip #18: Full Width Navigation</a><br />
<a href="http://www.billerickson.net/thesis-wordpress-add-content-between-posts/">Thesis Tip #17: Adding Content Between Posts</a><br />
<a href="http://www.billerickson.net/thesis-tip-wordpress-redirect-pages/">Thesis Tip #16: Redirect Pages</a></p>
<h2><a href="http://www.matthodder.com/">Matt Hodder</a></h2>
<p><a href="http://matthodder.com"><img src="http://themethesis.com/wp-content/uploads/2010/09/matt-hodder.png" alt="Matt Hodder"></a><br />
Matt Hodder is one half of the <a href="http://thesisthemes.com">Thesis Themes</a> team (who are my friends, as I sell my skin, <a href="http://thesisthemes.com/premium-skins/thesis-magazine/">Thesis Magazine</a>, through them).  Very talented at Thesis coding with a great eye for design, Matt&#8217;s blog shows you how he does some of the things he does for Thesis Themes.</p>
<p>Recent posts:<br />
<a href="http://www.matthodder.com/change-thesis-to-a-fluid-layout/">Change Your Thesis Site to a Fluid Layout</a><br />
<a href="http://www.matthodder.com/enable-wordpress-3-0-features-for-the-thesis-theme/">Enable WordPress 3.0 Features for the Thesis Theme</a><br />
<a href="http://www.matthodder.com/thesis-starter-psd-and-custom-files/">Starter PSD and Custom Files</a></p>
<h2><a href="http://www.kristarella.com/">Kristarella</a></h2>
<p><a href="http://www.kristarella.com"><img src="http://themethesis.com/wp-content/uploads/2010/09/kristarella.png" alt="Kristarella" /></a><br />
Kristarella has some of the most read and classic Thesis posts around.  She writes about a variety of things but check out her <a href="http://www.kristarella.com/thesis/<br />
">Thesis archives</a> to see a variety of in-depth guides.  Her posts are less tutorials and walk-throughs, and more general articles to teach you how to do your own thing.  Very useful.</p>
<p>Recent posts:<br />
<a href="http://www.kristarella.com/2010/06/wordpress-3-0-custom-post-types-taxonomies-thesis/">WordPress 3.0 Custom Post Types, Taxonomies &#038; Thesis</a><br />
<a href="http://www.kristarella.com/2010/05/position-your-thesis-nav/">Position Your Thesis Nav</a><br />
<a href="http://www.kristarella.com/2010/05/mod-timthumb-for-wpmu-and-thesis/">Mod Timthumb for WPMU and Thesis</a></p>
<h2><a href="http://www.artofblog.com/">Art of Blog</a></h2>
<p><a href="http://artofblog.com"><img src="http://themethesis.com/wp-content/uploads/2010/09/art-of-blog.png" alt="Art of Blog" /></a></p>
<p>Not only is Art of Blog one of the most impressive Thesis-based sites I&#8217;ve seen to date, but it&#8217;s filled with all sorts of blogging advice, including tips on creating websites using the Thesis Theme.  Their <a href="http://www.artofblog.com/wordpress/themes/thesis-theme/">Thesis archives</a> are filled with goodies and easy to follow tutorials, and while you&#8217;re there you can check out other how-tos and tips to take your designing and blogging to the next level.</p>
<p>Recent posts:<br />
<a href="http://www.artofblog.com/date-based-design-elements/">Creating Date Based Design Elements in Thesis</a><br />
<a href="http://www.artofblog.com/thesis-body-classes/">How to Use Thesis Custom Body Classes</a><br />
<a href="http://www.artofblog.com/how-to-301-redirect-any-thesis-page/">301 Redirect Any Thesis Page</a></p>
<h2><a href="http://gregrickaby.com/">Greg Rickaby</a></h2>
<p>Greg Rickaby is a web developer who has really taken a shine to the Thesis theme (and now the Genesis framework as well).  You&#8217;ll find some more advanced tutorials and in-depth how-tos here, and it&#8217;s a great place to go when you want to do something really fancy with the framework.</p>
<p>Recent posts:<br />
<a href="http://gregrickaby.com"><img src="http://themethesis.com/wp-content/uploads/2010/09/greg-rickaby.png" alt="Greg Rickaby" /></a><br />
<a href="http://gregrickaby.com/2010/04/how-to-use-jquery-lazy-load-in-thesis-1-7.html">How to Use jQuery Lazy Load in Thesis 1.7</a><br />
<a href="http://gregrickaby.com/2010/07/thesis-1-8-header-image.html">Thesis 1.8 Header Image</a><br />
<a href="http://gregrickaby.com/2010/03/how-to-create-a-sub-loop-in-thesis.html">How to Create a Sub-Loop in Thesis</a></p>
<h2><a href="http://mattflies.com">Matt Flies</a></h2>
<p><a href="http://mattflies.com"><img src="http://themethesis.com/wp-content/uploads/2010/09/matt-flies.png" alt="Matt Flies"></a></p>
<p>I almost didn&#8217;t include Matt Flies, as it&#8217;s under construction right now and the posts are unavailable.  That being said, when they <em>are</em> available, they&#8217;re excellent. Bookmark it or sign up to his newsletter because he puts out very easy to follow tutorials that teach you how to make Thesis do some really cool things.</p>
<h2><a href="http://themethesis.com">Theme Thesis</a></h2>
<p><a href="http://themethesis.com/wp-content/uploads/2010/09/theme-thesis.png"><img src="http://themethesis.com/wp-content/uploads/2010/09/theme-thesis.png" alt="Theme Thesis"></a></p>
<p>I know, I know, shameless.  But I like to think that Theme Thesis is indeed one of the best Thesis resources available right now.  Not only will you find tutorials for Thesis, but you&#8217;ll also find tutorials for regular WordPress templates, so you can see what&#8217;s different and what makes Thesis unique.</p>
<p>Recent posts:<br />
<a href="http://themethesis.com/tutorials/jquery-alert-box/">How to Make a jQuery-Powered Alert Box for the Thesis WordPress Theme</a><br />
<a href="http://themethesis.com/tutorials/previous-next-thumbnails-wordpress/">How to Use Thumbnails for Previous/Next Navigation in WordPress</a><br />
<a href="http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/">How to Add The WordPress 3 Nav Menu to Thesis</a></p>
<h2>That&#8217;s not all folks!</h2>
<p>There&#8217;s no doubt more awesome <a href="http://themethesis.com/go/thesis">Thesis</a> resources out there. These are just my 9 favourites, and a varied collection that I feel will give you a great well-rounded education in Thesis development.  You&#8217;re more than welcome to share your personal favourites in the comments! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/roundups/thesis-blogs/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>4 Ideas For Styling Link Hovers With CSS</title>
		<link>http://www.themethesis.com/tutorials/css-link-hovers/</link>
		<comments>http://www.themethesis.com/tutorials/css-link-hovers/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 14:29:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2341</guid>
		<description><![CDATA[Links are a basic part of the Internet. They&#8217;re what keep it connected, really, so why not make these connections fun? A link hover is what happens when you hover your mouse over a link (obviously). Usually you&#8217;ll see an underline, or an underline removed, or a different colour. But there are many ways to [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/css-link-hovers/" title="Permanent link to 4 Ideas For Styling Link Hovers With CSS"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/07/css-link-hovers.jpg" width="580" height="190" alt="CSS Link Hovers" /></a>
</p><p>Links are a basic part of the Internet.  They&#8217;re what keep it connected, really, so why not make these connections fun? A link hover is what happens when you hover your mouse over a link (obviously).  Usually you&#8217;ll see an underline, or an underline removed, or a different colour.  But there are many ways to show people that they can click, so I thought I&#8217;d show you four of my favourites.</p>
<p><span id="more-2341"></span></p>
<ol>
<li>
<h2>Transition</h2>
<p>CSS3 has introduced an awesome new property called &#8220;transition&#8221;.  Don&#8217;t be scared when I say CSS3, as this degrades perfectly fine and non-supporting browsers will just show a regular hover (I&#8217;m looking at you Internet Explorer).  You can use this transition property to make your link change colour slowly. It&#8217;s a very subtle but nice-looking effect.</p>
<p>You apply the transition like so: </p>
<pre class="brush: css">
a:hover {
   color:#000;
   -webkit-transition:color 500ms ease-in;
   -moz-transition:color 500ms ease-in;
   -o-transition:color 500ms ease-in;
   transition:color 500ms ease-in;
}
</pre>
<p><a href="#" class="transition">Check me out, I&#8217;m an example.</a>
</li>
<li>
<h2>Shadow</h2>
<p>Another CSS3 trick.  Make sure to specify this <em>along with</em> a colour, as otherwise it won&#8217;t degrade nicely at all and your older browser users will get confused.</p>
<pre class="brush: css">
a:hover {text-shadow: 1px 1px 1px rgba(0,0,0,.4);}
</pre>
<p><a href="#" class="shadow">If you hover me, good things will happen.</a>
</li>
<li>
<h2>Move</h2>
<p>This is a simple one, but one that I like and use a lot.  You can add some cool interactivity if you slightly alter a link&#8217;s position on hover.</p>
<pre class="brush: css">
a:hover {position: relative; top: 2px;}
</pre>
<p><a href="#" class="move">I just can&#8217;t stay still when you hover me!</a>
</li>
<li>
<h2>Opacity</h2>
<p>This is a trick for images, and one that I use all the time.  It&#8217;s nice to give images a hover state, as not all images are clickable, so you should be letting your readers know which ones are.</p>
<pre class="brush: css">
a.img {opacity: .5;}
</pre>
<p>You can see an example of this on the social media links at the top of this page. These links also move.
</li>
</ol>
<p>Well there they are.  There&#8217;s nothing super mind-blowing here, but it&#8217;s the little details that count and will make your website a little more special.  <strong>Are there any techniques that you like to use? Share them in the comments.</strong></p>
<p style="text-align: right;">image by <a href="http://www.flickr.com/photos/aidanmorgan/4126708151/">aidan morgan</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/css-link-hovers/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How to Make a jQuery-Powered Alert Box for the Thesis WordPress Theme</title>
		<link>http://www.themethesis.com/tutorials/jquery-alert-box/</link>
		<comments>http://www.themethesis.com/tutorials/jquery-alert-box/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 13:20:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2325</guid>
		<description><![CDATA[The details of this tutorial only apply to people using the Thesis theme. The technique, however, can apply to anyone. So if you&#8217;re new to jQuery with any tip of website, read on. As you may know, the wonderful Thesis theme comes with some default paragraph styles. This includes styling for notes (as you can [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/jquery-alert-box/" title="Permanent link to How to Make a jQuery-Powered Alert Box for the Thesis WordPress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/07/jquery-alert-box.jpg" width="580" height="190" alt="jQuery Alert Box Thesis" /></a>
</p><p class="note">The details of this tutorial only apply to people using the <a href="http://themethesis.com/go/thesis"> Thesis</a> theme.  The technique, however, can apply to anyone.  So if you&#8217;re new to jQuery with any tip of website, read on.</p>
<p>As you may know, the wonderful <a href="http://themethesis.com/go">Thesis</a> theme comes with some <a href="http://themethesis.com/go/thesis-styles/">default paragraph styles</a>.  This includes styling for notes (as you can see above) and alerts (as you can see above that).  These are great, but wouldn&#8217;t it be cool if you could close the alert after you&#8217;ve been alerted? Potentially.</p>
<p>This tutorial has a bigger purpose than that, though.  It should be a great introduction to jQuery for those who have never used it before.  So let&#8217;s begin.</p>
<p><span id="more-2325"></span></p>
<ol>
<li>
<h2>Turn jQuery on</h2>
<p>On a normal site you would call jQuery from the head of your document. Thesis has support for this built in, so in your WordPress dashboard go to Thesis &gt; Page Options &gt; Javascript and select the jQuery library.</li>
<li>
<h2>Place the following in custom_functions.php:</h2>
<pre class="brush: php">
function custom_alert_box() {
?&gt;

&lt;script type=&quot;text/javascript&quot;&gt;// &lt;![CDATA[
$(document).ready(function() {
   $(&#039;#closealert&#039;).click(function(){
     $(&#039;p.alert&#039;).hide(&#039;2000&#039;);
   });
 });

// ]]&gt;&lt;/script&gt;

add_action(&#039;wp_head&#039;, &#039;custom_alert_box&#039;);
</pre>
<p>So what does this mean? It means that <em>p.alert</em> will be closed when you click something with the ID <em>closealert</em> and the animation will be finished in 2000ms.  This allows for lots of customization, as <em>#closealert</em> could be an image or a span that says close me or a header, or whatever you think would be most useful.</li>
<li>
<h2>Add alerts with your close mechanism</h2>
<p>Now when you use the built-in alert style with <em>&lt;p class=&#8221;alert&#8221;&gt;</em>, place your #closealert button in there somewhere and you&#8217;re all set.</li>
</ol>
<p>Tip: If you don&#8217;t want to add a closing mechanism, then you can change the applicable lines in the code to this:</p>
<pre class="brush: php">
$(&#039;p.alert).click(function(){
$(&#039;p.alert&#039;).hide(&#039;2000&#039;);
</pre>
<p>Now when you click anywhere in the alert box it will close.</p>
<p><strong>Enjoy</strong></ol>
<p class="note">This post was brought to you by the <a href="http://themethesis.com/go/thesis">Thesis WordPress theme</a>; the search-engine optimized powerhouse of a framework designed to help you get a website up and running faster and more successfully.  Want more information? Get it <a href="http://themethesis.com/go/thesis">here</a>.  Want a professional website built on the Thesis framework and customized just for you? <a href="http://themethesis.com/contact-2/">Contact me.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/jquery-alert-box/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Use Thumbnails for Previous/Next Navigation in WordPress</title>
		<link>http://www.themethesis.com/tutorials/previous-next-thumbnails-wordpress/</link>
		<comments>http://www.themethesis.com/tutorials/previous-next-thumbnails-wordpress/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 16:11:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2310</guid>
		<description><![CDATA[Almost every WordPress theme you&#8217;ll come across has support for going to the previous or next post. That&#8217;s all well and good, but in WordPress 2.9 we got the ability to have post thumbnails. Wouldn&#8217;t it be great to use thumbnails instead of or alongside our post titles? The answer is yes, it would. So [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/previous-next-thumbnails-wordpress/" title="Permanent link to How to Use Thumbnails for Previous/Next Navigation in WordPress"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/07/previous-next-thumbnails.jpg" width="580" height="190" alt="Previous Next Link Thumbnails" /></a>
</p><p>Almost every WordPress theme you&#8217;ll come across has support for going to the previous or next post.  That&#8217;s all well and good, but in WordPress 2.9 we got the ability to have post thumbnails.  Wouldn&#8217;t it be great to use thumbnails instead of or alongside our post titles? The answer is yes, it would.  So I embarked on a journey to figure out how to add this functionality to your theme, and have posted the results below.  First for regular WordPress users, and then for Thesis users.</p>
<p><span id="more-2310"></span></p>
<ol>
<li>
<h2>Add post thumbnail support</h2>
<p>Open up functions.php and place <enm>add_theme_support(&#8216;post-thumbnails&#8217;);</em> in there, if it isn&#8217;t there already.
</li>
<li>
<h2>Add the code</h2>
<p>Open single.php and go down to where the previous_post_link and next_post_link is situated.  If your theme doesn&#8217;t have that already, then just find a proper place for the thumbnails.  Place the following code in:</p>
<pre class="brush: php">
&lt;?php
$prevPost = get_previous_post();
$prevthumbnail = get_the_post_thumbnail($prevPost-&gt;ID, array(150,150) );
previous_post_link(&#039;%link&#039;,&#039;&#039;.$prevthumbnail.&#039;&#039;, TRUE);
?&gt;

&lt;p class=&quot;prev_next2&quot;&gt;&lt;?php previous_post_link(&#039;%link&#039;,&#039;&lt;&#039;) ; ?&gt;

&lt;?php
$nextPost = get_next_post();
$nextthumbnail = get_the_post_thumbnail($nextPost-&gt;ID, array(150,150) );
next_post_link(&#039;%link&#039;,&#039;&#039;.$nextthumbnail.&#039;&#039;, TRUE);
?&gt;
&lt;p class=&quot;prev_next2&quot;&gt;&lt;?php previous_post_link(&#039;%link&#039;,&#039;&gt;&#039;) ; ?&gt;&lt;/p&gt;
</pre>
<p>And that&#8217;s it for the code.  The 150,150 is the size of the thumbnail, so feel free to experiment with that.  You can style the thumbnail by targetting .wp-post-image in your css.  The <em>&#8216;<'</em> can be changed to &#8216;%title&#8217; if you&#8217;d like to put your previous/next titles in there instead of an arrow, and this can be styled by targeting <em>p.prev_next2</em>.
</li>
<li>
<h2>Add post thumbnails to your post</h2>
<p>Go into your post screen on the dashboard, and make sure you have an image set for &#8220;Featured image&#8221; on the right hand size.  This is where the thumbnail will come from.</li>
<li>
<h2>For Thesis users:</h2>
</li>
<p>The trick works the same for <a href="http://themethesis.com/go/thesis">Thesis</a>, only instead of placing it in single.php, place it in a function like follows:</p>
<pre class="brush: php">
function prev_next(){
if (is_single()) {
?&gt;

// CODE HERE

&lt;?php } }
add_action(&#039;thesis_hook_after_content, &#039;prev_next);
remove_action(&#039;thesis_hook_after_content&#039;,&#039;thesis_prev_next_posts&#039;);
</pre>
<p>The remove_action gets rid of the previous/next navigation that is already built in.
</ol>
<h2>Sources:</h2>
<p><a href="http://wordpress.org/support/topic/368725">WordPress support forums</a><br />
<a href="http://digwp.com/2009/08/wordpress-page-navigation/">Digging into WordPress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/previous-next-thumbnails-wordpress/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>27 More Customizations for the Thesis WordPress Theme</title>
		<link>http://www.themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/</link>
		<comments>http://www.themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 00:05:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2296</guid>
		<description><![CDATA[It&#8217;s been a while since 47 Customizations for the Thesis Theme was posted and there has been some great Thesis tutorials written since then. Here I&#8217;ll share some of my favourite ones. WordPress 3.0 Enable WordPress 3.0 Features for the Thesis Theme WordPress 3.0 has some cool new features that Thesis doesn&#8217;t out-of-the-box support yet. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/" title="Permanent link to 27 More Customizations for the Thesis WordPress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/04/thesis-tutorials1.jpg" width="540" height="190" alt="Thesis Theme Tutorials" /></a>
</p><p>It&#8217;s been a while since <a href="http://themethesis.com/tutorials/47-customizations-for-the-thesis-theme/">47 Customizations for the Thesis Theme</a> was posted and there has been some great <a href="http://themethesis.com/go/thesis">Thesis</a> tutorials written since then.  Here I&#8217;ll share some of my favourite ones.</p>
<p><span id="more-2296"></span></p>
<h2>WordPress 3.0</h2>
<dl>
<dt><a href="http://www.matthodder.com/enable-wordpress-3-0-features-for-the-thesis-theme/">Enable WordPress 3.0 Features for the Thesis Theme</a></dt>
<dd>WordPress 3.0 has some cool new features that Thesis doesn&#8217;t out-of-the-box support yet.  Learn how to add that support yourself.</dd>
<dt><a href="http://www.kristarella.com/2010/06/wordpress-3-0-custom-post-types-taxonomies-thesis">WordPress 3.0 custom post types, taxonomies &amp; Thesis</a></dt>
<dd>Learn about the more techy WordPress 3.0 advancements and how to use them with your Thesis theme here.</dd>
<dt><a href="http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/">How to Add the WordPress 3 Nav Menu to Thesis</a></dt>
<dd>Learn how to quickly add the WordPress 3.0 navigation menus to your Thesis site.</dd>
</dl>
<h2>Making it Pop</h2>
<dl>
<dt><a href="http://www.artofblog.com/thesis-body-classes/">Using Thesis Custom Body Classes To Break Down Design Barriers</a></dt>
<dd>Want to add some flair to a specific post on your Thesis-based site?  Learn how to do so with custom body classes.</dd>
<dt><a href="http://themethesis.com/guides/style-thesis-sidebar/">Styling the Thesis Sidebar</a></dt>
<dd>Using the default sidebar can be a giveaway that you&#8217;re using the Thesis theme.  Here I&#8217;ll teach you how to style yours and make it unique.</dd>
<dt><a href="http://www.doublemule.com/custom-comment-avatars-thesis-default-gravatar-images/">How to Make Custom Comment Avatars for Thesis</a></dt>
<dd>Sick of the default gravatar in your comments? Here&#8217;s an article on putting your own in.</dd>
<dt><a href="http://thesistutor.com/how-to-make-a-rotating-header-image-in-thesis/">How to Make a Rotating Header Image in Thesis</a></dt>
<dd>One header image? Boring! Learn how to make it rotate.</dd>
<dt><a href="http://www.kristarella.com/2010/05/position-your-thesis-nav/">Position Your Thesis Nav</a></dt>
<dd>Sometimes you don&#8217;t want your navigation bar where it comes by default.  Luckily it&#8217;s easy to change its position.</dd>
<dt><a href="http://gregrickaby.com/2010/04/how-to-use-jquery-lazy-load-in-thesis-1-7.html">How to Use jQuery Lazy Load in Thesis 1.7</a></dt>
<dd>Want to be like the cool kids and have your content load in as you go to it? Here you&#8217;ll learn how to do so.</dd>
</dl>
<h2>Pages &amp; Features</h2>
<dl>
<dt><a href="http://gregrickaby.com/2010/02/how-to-create-additional-page-templates.html">How to Create Additional Page Templates</a></dt>
<dd>Page templates are infinitely useful in WordPress, but a little trickier with Thesis.  Learn how start creating them.</dd>
<dt><a href="http://mattflies.com/tech/another-tabbed-widget-for-thesis-tutorial-better/">Another Tabbed Widget for Thesis Tutorial</a></dt>
<dd>Learn how to add a cool tabbed widget to your sidebar.  (See the one on the right here for an example)</p>
</dd>
<dt><a href="http://themethesis.com/tutorials/jquery-wordpress-archives/">Create a Powerful jQuery-Powered Archives Page</a></dt>
<dd>Create a useful Archives page like the one used <a href="http://themethesis.com/archives">here</a>.</p>
</dd>
<dt><a href="http://gregrickaby.com/2010/03/how-to-create-a-sub-loop-in-thesis.html">How to Create a Subloop in Thesis</a></dt>
<dd>A tutorial on using advanced loops in Thesis.</dd>
<dt><a href="http://themethesis.com/tutorials/extra-widgets-thesis/">Add Extra Widget Areas to Thesis</a></dt>
<dd>Thesis only comes with 2 widgets by default, but sometimes we need more.  Learn how to add them with this tutorial.</dd>
</dl>
<h2>Functionality</h2>
<dl>
<dt><a href="http://thoughtsunlimited.net/blog/wordpress/hide-dates-in-old-thesis-theme-posts/">Hide Dates in Old WordPress Posts Using the Thesis Theme</a></dt>
<dd>Have some old content that&#8217;s still applicable and relevant? Don&#8217;t let people judge it by its date! Learn how to hide the dates in only old posts.</dd>
<dt><a href="http://thesisready.com/tutorial/smarter-thesis-hooks/">Smarter Thesis Hooks</a></dt>
<dd>If you&#8217;re doing any kind of real customization to your Thesis theme, you probably have functions all over the place.  Learn how to implement them efficiently.</dd>
</dl>
<h2>Slideshows</h2>
<dl>
<dt><a href="http://themethesis.com/tutorials/featured-slider-thesis/">Adding a Featured Content Slider to Thesis in 5 Quick Steps</a></dt>
<p>Learn how to add a jQuery slider to your Thesis site using s3lider.</p>
<dt><a href="http://thesistutor.com/how-to-make-a-jquery-image-slideshow-in-thesis/">How To Make a jQuery Image Slideshow in Thesis</a></dt>
<dd>Learn how to quickly add a jQuery image slideshow to your Thesis site.</dd>
<dt><a href="http://wpblogger.com/thesis-adding-content-slider-no-plugin.php">Adding a Featured Content Slider for Thesis</a></dt>
<dd>Use jQuery Cycle to add a content slider to your Thesis site.</dd>
<dt><a href="http://gregrickaby.com/2010/04/how-to-create-a-featured-content-slider.html">How to Create a Featured Content Slider</a></dt>
<dd>An in-depth tutorial to show you how to add support for a featured content slider in Thesis.</p>
</dd>
<dt><a href="http://www.emptycabinmedia.com/thesis-feature-box-slider/">Thesis Feature Box &#8211; How to Add a Slider</a></dt>
<dd>Learn how to add the d13slidehow to your Thesis feature box.</p>
</dd>
<dt><a href="http://eblogtip.com/featured/thesis-tutorials-how-to-integrate-cu3er-post-elements-to-thesis-theme-feature-box.html">How To Integrate Cu3er Post Elements To Thesis Theme Feature Box</a></dt>
<dd>Cu3er is a popular flash slideshow.  Learn how to get it working in your Thesis feature box. </dd>
</dl>
<h2>Social Media Integration</h2>
<dl>
<dt><a href="http://mattflies.com/tech/how-to-install-twitters-anywhere-on-thesis/">How to Install Twitter&#8217;s @anywhere in Thesis</a></dt>
<dd>@anywhere was launched recently with some really cool features.  Learn how to implement it on your Thesis site.</p>
</dd>
<dt><a href="http://mattflies.com/tech/inserting-facebooks-like-button-in-thesis/">Inserting Facebook&#8217;s Like Button in Thesis</a></dt>
<dd>Facebook is a huge source of traffic.  Everybody and their grandmothers is on it.  Learn how to leverage that in your site with this tutorial.</p>
</dd>
<dt><a href="http://www.artofblog.com/add-a-tweet-this-post-box-to-your-thesis-post-footer/">Add A Tweet This Post Box To Your Thesis Post Footer</a></dt>
<dd>Learn how to give visitors a custom tweet they can send out directly from your post.</dd>
<dt><a href="http://themethesis.com/tutorials/show-retweets-without-plugin-wordpress/">Show Number of Retweets in WordPress Without a Plugin</a></dt>
<dd>Use social proof to entice people to share your WordPress posts with unlimited customization potential.</dd>
<dt><a href="http://themethesis.com/tutorials/social-networking-links/">Add Social Links to WordPress Without a Plugin</a></dt>
<dd>Learn how to make sharing easy by putting already-formatted social media links in your posts without using a plugin.</dd>
<dt><a href="http://wpblogger.com/create-floating-areas.php">Create a &#8220;Floating&#8221; Area in Thesis</a></dt>
<dd>Keep your social media links from and centre with this floating tutorial.</dd>
</dl>
<p style="text-align: right;">photo by <a href="http://www.flickr.com/photos/back_garage/3250840374/">back_garage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Style Individual WordPress Posts in Seconds</title>
		<link>http://www.themethesis.com/tutorials/styling-specific-wordpress-posts/</link>
		<comments>http://www.themethesis.com/tutorials/styling-specific-wordpress-posts/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 17:13:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2276</guid>
		<description><![CDATA[It&#8217;s time for a really quick tip. With art directed posts being all the rage now, everybody wants to style everything. There are plugins and custom fields and all sorts of ways to do this, but WordPress already has two not-so-popular functions that allow you to style specific posts or pages So here they are: [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/styling-specific-wordpress-posts/" title="Permanent link to How to Style Individual WordPress Posts in Seconds"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/style-individual-wordpress-posts.jpg" width="580" height="190" alt="Style Individual WordPress Posts" /></a>
</p><p>It&#8217;s time for a really quick tip.</p>
<p>With <strong>art directed posts</strong> being all the rage now, everybody wants to style everything.  There are plugins and custom fields and all sorts of ways to do this, but WordPress already has two not-so-popular functions that allow you to <strong>style specific posts or pages</strong></p>
<p>So here they are:</p>
<p><span id="more-2276"></span></p>
<h2>Body Class</h2>
<pre class="brush: php">
&lt;body &lt;?php body_class(); ?&gt;&gt;
</pre>
<p>This will generate something like this:</p>
<pre class="brush: php">
&lt;body class=&quot;single postid-61 logged-in&quot;&gt;
</pre>
<p>Using this you can easily change the background image of your post by targetting <em>.postid-61</em> in your CSS file.  You could change anything else by targetting whatever it is, such as <em>.postid-61</em> li to change your lists or <em>.postid-61</em> a to change your link colours.</p>
<h2>Post Class</h2>
<pre class="brush: php">
&lt;div &lt;?php post_class() ?&gt; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
</pre>
<p>This will generate something like:</p>
<pre class="brush: php">
&lt;div class=&quot;post&quot; id=&quot;post-61&quot;&gt;
</pre>
<p>This will allow you to style the post section in the same way by targeting #post-61. Thus you can change the <em>p</em> font or the <em>h1</em> or anything else.</p>
<p><strong>There&#8217;s a lot you can do with these tags</strong>, since your content is wrapped in post and the rest of your site is wrapped in the body class. Not all themes will have this built in, so if yours doesn&#8217;t you can just replace the body and post tags with the functions above. I didn&#8217;t go over everything you can do here because it&#8217;s almost limitless, I just wanted to make sure that you were aware of the possibilities.  There are links at the bottom you can read if you want more detail on the body class.  Have fun! </p>
<p><em>Note: depending on your CSS structure you may have to place !important in your tags to override others.</em></p>
<h2>Further reading</h2>
<p><a href="http://www.nathanrice.net/blog/wordpress-2-8-and-the-body_class-function/">WordPress 2.8 and the body class function</a><br />
<a href="http://wpengineer.com/wordpress-28-body_class-automatic_feed_links/">WordPress 2.8 body_class, automatic_feed_links</a><br />
<a href="http://perishablepress.com/press/2009/05/26/dynamic-body-class-id-php-wordpress/">9 Ways to Set Dynamic Body IDs via PHP and WordPress</a></p>
<p style="text-align: right">photo by <a href="http://www.flickr.com/photos/ivanomak/3812008486/">ivan makarov</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/styling-specific-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Most Important Features for Your Premium WordPress Theme</title>
		<link>http://www.themethesis.com/misc/premium-wordpress-theme-features/</link>
		<comments>http://www.themethesis.com/misc/premium-wordpress-theme-features/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 23:30:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2242</guid>
		<description><![CDATA[I recently did a survey both here and on the Third Tribe forums in an attempt to figure out just what it is people want from a premium WordPress theme. We all keep creating but nobody ever really asks the question. Every day somebody comes out with a theme with an options page that&#8217;s bigger [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/misc/premium-wordpress-theme-features/" title="Permanent link to The Most Important Features for Your Premium WordPress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/premium-wordpress-theme-features.jpg" width="580" height="190" alt="Premium WordPress Theme Features" /></a>
</p><p>I recently did a survey both <a href="http://themethesis.com/misc/premium-wordpress-theme-worth-it/">here</a> and on the <a href="http://themethesis.com/go/third-tribe/">Third Tribe</a> forums in an attempt to figure out just what it is people want from a premium WordPress theme.  We all keep creating but nobody ever <em>really</em> asks the question.  </p>
<p>Every day somebody comes out with a theme with an options page that&#8217;s bigger than the previous.  <strong>But is that what the customers want?</strong></p>
<p><span id="more-2242"></span><br />
I got some great results both over here on the poll and also in the Third Tribe forums.  I&#8217;m going to share the poll results with you here, first in bar form and then in a pie graph:</p>
<p><img src="http://themethesis.com/wp-content/uploads/2010/06/premium-wordpress-features.jpg" alt="" title="Premium WordPress Features" width="580" height="1032" class="aligncenter size-full wp-image-2247" /></p>
<p>As you can see, the top results were as follows:</p>
<h2>Great Design</h2>
<p> A bit of a shocker to me, honestly.  I thought more feature-oriented choices would be the highest ranked categories for premium WordPress themes.  But get to <a href="http://emberapp.com">Ember</a> and <a href="http://dribbble.com">Dribbble</a> and everywhere else and look for inspiration, because great design is as important in a premium theme as it is in a free one or a custom site.</p>
<h2>Ease of Customization</h2>
<p> Not surprising being that the poll was posted on a <a href="http://themethesis.com/go/thesis">Thesis</a>-oriented site, but ease of customization came in second.  People paid good money for your theme, so they&#8217;re going to want to be able to use it for their purposes. </p>
<h2>Support</h2>
<p> This is my personal reason for buying premium products.  Have a support forum, a phone number, or be quick to respond to e-mails as that&#8217;s one of the important extras that premium theme purchasers are looking for from you when they buy.</p>
<p>So in closing, make sure that your site has a <strong>great design</strong>, is <strong>useful</strong> for a wide variety of people or extremely useful for a niche, and <strong>support the product</strong> like you want everyone to succeed with it.  Which you do, so that shouldn&#8217;t be too difficult. <img src='http://www.themethesis.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;m going to leave you with a great quote from <a href="http://chrisbrogan.com">Chris Brogan</a> in his response on the <a href="http://themethesis.com/go/third-tribe/">Third Tribe</a> forums that sums up my personal opinion on premium products in general pretty well:</p>
<blockquote><p>&#8220;It has to do something really well that I can&#8217;t do myself. <a href="http://themethesis.com/go/thesis">Thesis</a> gives me better SEO plus some really simple business execution. Press75 Video Elements makes a video heavy site really easy with just a few copy/pastes. There are lots of others that DO something for me. I don&#8217;t pay for colors. I pay for function.&#8221;</p></blockquote>
<p><em> &#8211; Chris Brogan </em></p>
<p><strong>What are your thoughts on the matter?</strong></p>
<p style="text-align: right;">sort of humorous sign picture by <a href="http://www.flickr.com/photos/mattjiggins/3018279954/">matt jiggins</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/misc/premium-wordpress-theme-features/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Add the WordPress 3 Nav Menu to Thesis</title>
		<link>http://www.themethesis.com/tutorials/wordpress-3-nav-menu-thesis/</link>
		<comments>http://www.themethesis.com/tutorials/wordpress-3-nav-menu-thesis/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 12:43:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2235</guid>
		<description><![CDATA[WordPress 3 has a sweet new menu. Thesis already had a sweet menu. Still, some people would like to take advantage of all that this new release of WordPress offers and using the new navigation menu is one of them. Luckily it&#8217;s incredibly easy to add support for the new nav menu in Thesis. Open [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/tutorials/wordpress-3-nav-menu-thesis/" title="Permanent link to How to Add the WordPress 3 Nav Menu to Thesis"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/thesis-wordpress-3-nav-menu.jpg" width="580" height="190" alt="Wordpress 3 Nav Menu in Thesis" /></a>
</p><p>WordPress 3 has a sweet new menu.  <a href="http://themethesis.com/go/thesis">Thesis</a> already had a sweet menu.  Still, some people would like to take advantage of all that this new release of WordPress offers and using the new navigation menu is one of them.  Luckily it&#8217;s incredibly easy to add support for the new nav menu in <a href="http://themethesis.com/go/thesis">Thesis</a>.</p>
<p><span id="more-2235"></span><br />
Open custom_functions.php and add:</p>
<pre class="brush: php">
function wp3_nav() { ?&gt;

	&lt;?php
	add_theme_support( &#039;nav-menus&#039; );
	wp_nav_menu();
	?&gt;

&lt;?php }
add_action(&#039;thesis_hook_before_header&#039;, &#039;wp3_nav&#039;);
remove_action(&#039;thesis_hook_before_header&#039;, &#039;thesis_nav_menu&#039;);
</pre>
<p>That adds support for the new menu and removes the original Thesis nav.  You can style the new nav the same way that you styled the old one, as that seems works out of the box.  You can have both running at the same time if you omit the last line.  You can also change the <a href="http://themethesis.com/go/hooks/">hook</a> for our new function wp3_nav and place it anywhere you&#8217;d like.</p>
<p>I only preliminarily tested this to make sure it worked and could be styled, so you might find bugs.  Note that WordPress 3 isn&#8217;t even in final release yet.</p>
<p>More information:<br />
<a href="http://codex.wordpress.org/Template_Tags/wp_nav_menu">wp_nav_menu</a> at the Codex.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/tutorials/wordpress-3-nav-menu-thesis/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Theme Thesis is on Facebook</title>
		<link>http://www.themethesis.com/site-updates/theme-thesis-facebook/</link>
		<comments>http://www.themethesis.com/site-updates/theme-thesis-facebook/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:19:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Updates]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2223</guid>
		<description><![CDATA[This is just a quick update to let everyone know that Theme Thesis is now on Facebook. If you follow the Theme Thesis Twitter account you&#8217;ll see that it&#8217;s filled with web design resources and goodies, and that&#8217;s what the Facebook account will be like. Facebook and Twitter are different venues, though, so the volume [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.themethesis.com/site-updates/theme-thesis-facebook/" title="Permanent link to Theme Thesis is on Facebook"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/theme-thesis-facebook.jpg" width="580" height="190" alt="Theme Thesis on Facebook" /></a>
</p><p><strong>This is just a quick update to let everyone know that Theme Thesis is now on <a href="http://facebook.com/themethesis">Facebook.</a> </strong></p>
<p>If you follow the Theme Thesis <a href="http://twitter.com/themethesis">Twitter</a> account you&#8217;ll see that it&#8217;s filled with web design resources and goodies, and that&#8217;s what the <a href="http://facebook.com/themethesis">Facebook</a> account will be like.  Facebook and Twitter are different venues, though, so the volume will be restricted and the only resources that will make it over there will be the best of the best.</p>
<p><em> Become a &#8220;liker&#8221; to stay updated with Theme Thesis happenings, get the best web design resources, and generally have a good time. </em></p>
<p>Hopefully I&#8217;ll see you there!<br />
<a href="http://facebook.com/themethesis">facebook.com/themethesis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.themethesis.com/site-updates/theme-thesis-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

