<?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>Thesis Tutor &#187; Content</title> <atom:link href="http://thesistutor.com/category/content/feed/" rel="self" type="application/rss+xml" /><link>http://thesistutor.com</link> <description>Tutorials For The Thesis Wordpress Theme &#124; Video Tutorials For The Thesis Wordpress Theme</description> <lastBuildDate>Fri, 09 Jul 2010 04:50:05 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=abc</generator> <item><title>How to Exclude Posts with a Certain Tag in Thesis</title><link>http://thesistutor.com/how-to-exclude-posts-with-a-certain-tag-in-thesis/</link> <comments>http://thesistutor.com/how-to-exclude-posts-with-a-certain-tag-in-thesis/#comments</comments> <pubDate>Mon, 28 Jun 2010 13:00:46 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[Content]]></category><guid
isPermaLink="false">http://thesistutor.com/?p=1047</guid> <description><![CDATA[Many of you have found the post on excluding categories from you blog very helpful. However, what happens when you want to exclude posts with a certain tag from appearing on the blog? Well, thankfully that is an extremely simple operation. The first thing you have to do is figure what the tag id is. [...]]]></description> <content:encoded><![CDATA[<p></p><p>Many of you have found the <a
href="http://thesistutor.com/how-to-exclude-posts-of-a-certain-category-in-thesis/">post on excluding categories</a> from you blog very helpful. However, what happens when you want to exclude posts with a <em>certain tag</em> from appearing on the blog? Well, thankfully that is an extremely simple operation.</p><p>The first thing you have to do is figure what the <em>tag id</em> is. Simply go to Posts->Post Tags and hover over the name of the tag. Look at the bottom of the browser window (in the status bar) and look at the number on the end.</p><p><img
src="http://thesistutor.com/wp-content/uploads/2010/06/id-location.jpg" alt="ID location" /></p><p>If you are confused, <a
href="http://thesistutor.com/how-to-exclude-posts-of-a-certain-category-in-thesis/">watch this video</a>.</p><p>Next, open up <code>custom_functions.php</code> and enter the following (yes, that is two underscores between tag__not ):</p><pre>
function exclude_tag($query) {
if ( $query->is_home) {
	$query-> set('tag__not_in',array(<strong>ID</strong>));
	}
return $query;
}
add_filter('pre_get_posts','exclude_tag');
</pre><p>Where I have <code>ID</code>, you should have the number for the tag you want to exclude. For instance, <code>24</code> or <code>1</code>. It is very important that you do not put apostrophes around the number. Also, if you want more than one tag, you would do the following:</p><pre>
function exclude_tag($query) {
if ( $query->is_home) {
	$query-> set('tag__not_in',array(<strong>ID, ID, ID, ID</strong>));
	}
return $query;
}
add_filter('pre_get_posts','exclude_tag');
</pre><p>That is pretty much all there is to it!</p><p>Remember, if you don&#8217;t have the <a
href="http://thesistutor.com/diythemes">Thesis Developer&#8217;s License</a>, you are really missing out!</p> ]]></content:encoded> <wfw:commentRss>http://thesistutor.com/how-to-exclude-posts-with-a-certain-tag-in-thesis/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How To Make a jQuery Image Slideshow in Thesis</title><link>http://thesistutor.com/how-to-make-a-jquery-image-slideshow-in-thesis/</link> <comments>http://thesistutor.com/how-to-make-a-jquery-image-slideshow-in-thesis/#comments</comments> <pubDate>Mon, 15 Feb 2010 18:16:27 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[Content]]></category><guid
isPermaLink="false">http://thesistutor.com/?p=750</guid> <description><![CDATA[Updated! 03/23/10 Well I can&#8217;t spell apparently. I had misspelled &#8216;slideshow&#8217; in the code below. The issue is fixed and my wife is now administering me weekly spelling tests. Thanks, Scott and Willie. Slideshow Made Simple Making a jQuery image slideshow in Thesis is actually very easy. There are four basic steps: Insert a few [...]]]></description> <content:encoded><![CDATA[<p></p><h2>Updated! 03/23/10</h2><p><span
class="drop_cap">W</span>ell I can&#8217;t spell apparently. I had misspelled &#8216;slideshow&#8217; in the code below. The issue is fixed and my wife is now administering me weekly spelling tests. Thanks, <a
href="http://scottwyden.com/">Scott</a> and <a
href="http://www.williejackson.com">Willie.</a></p><h2>Slideshow Made Simple</h2><p>Making a <a
href="http://jquery.com/">jQuery</a> image slideshow in <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack="><em>Thesis</em></a> is actually very easy. There are four basic steps:</p><ul><li>Insert a few lines of code into the header.</li><li>Make a slideshow <code>&lt;div id="slideshow"&gt;</code>.</li><li>Put some images into your <code>images</code> folder.</li><li>Write a little <code>custom.css</code> code magic.</li></ul><p>To begin, I want to outline a few assumptions. I am going to assume that you have images of the same size (height and width). Also, although you <em>can</em> put any HTML into a &#8220;slide&#8221; I will only be using images. Lastly, I will be using a default transition effect called &#8220;fade&#8221; and I will not be adjusting all of the variables. In fact, if you read the <a
href="http://malsup.com/jquery/cycle/options.html">Cycle Plugin documentation</a>, you will see that there are about a million tweaks possible.</p><h4>Update 2/18/09</h4><p>For the sake of this tutorial, I am going to assume that you only want the slideshow to appear on your home page. If you want the slideshow on every page simply remove <code>if (is_front_page()){...........}</code>. Also, never be embarrassed to ask me for help! I am <em>the</em> <strong>Thesis Tutor</strong>, after all. <img
src='http://thesistutor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>Now, onto the juicy parts!</p><p>First, copy and paste the following into your <code>custom_functions.php</code>:</p><pre>
function slideshow() {
if (is_front_page()) {
?>&lt;div class="slideshow">
    &lt;a id="slide1" class="slide" href="http://yourblog.com/link">&lt;/a>
    &lt;a id="slide2" class="slide" href="http://yourblog.com/link2">&lt;/a>
  &lt;/div>
&lt;?php
}}
add_action('thesis_hook_after_header','slideshow');

function slide_script() {
echo "\n\n";
?>
&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">&lt;/script>
&lt;script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.72.js">&lt;/script>
&lt;script type="text/javascript">
$(document).ready(function() {
    $('.slideshow').cycle({
	fx: 'fade' //You can change transition effects here.
	});
});
&lt;/script>
&lt;?php
}
add_action('wp_head','slide_script');
</pre><p><em>It is important to note that you can add as many images as you please, just be sure to give them each a unique id so you can target them later in the CSS.</em></p><p>Next, drop the images you want to use in the slideshow in your <code>images</code> folder.</p><p>Last, we need to add some CSS to whip this little slideshow into shape. So, open up your <code>custom.css</code> and paste this little bit of code in there:</p><pre>
.custom .slideshow .slide { display: block; height: ---em; width: ---em; outline: none; }
.custom .slideshow #slide1 { background: url('images/image-1.jpg') no-repeat; }
.custom .slideshow #slide2 { background: url('images/image-2.jpg') no-repeat; }
</pre><p>Be sure to insert your images names and height/width. By default, the <code>font-size</code> is 10px. Therefore, to convert to ems, simply divide pixels by 10. Yes, it is THAT easy.</p><p>That should cover it, folks. Happy coding!</p> ]]></content:encoded> <wfw:commentRss>http://thesistutor.com/how-to-make-a-jquery-image-slideshow-in-thesis/feed/</wfw:commentRss> <slash:comments>68</slash:comments> </item> <item><title>How To Exclude Posts Of A Certain Category In Thesis</title><link>http://thesistutor.com/how-to-exclude-posts-of-a-certain-category-in-thesis/</link> <comments>http://thesistutor.com/how-to-exclude-posts-of-a-certain-category-in-thesis/#comments</comments> <pubDate>Wed, 19 Aug 2009 03:07:22 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[Content]]></category><guid
isPermaLink="false">http://thesistutor.com/?p=538</guid> <description><![CDATA[Categorical Exclusion Sometimes, there is a benefit to excluding posts of a certain category from the main blog page. For instance, you may want a page that updates frequently. Rather than go in and edit the page each time you want new content, you could simply write a post, mark it in a special category, [...]]]></description> <content:encoded><![CDATA[<p></p><p><embed
src="http://blip.tv/play/AYGqpGEA" type="application/x-shockwave-flash" width="720" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></p><h2>Categorical Exclusion</h2><p>Sometimes, there is a benefit to excluding posts of a certain category from the main blog page. For instance, you may want a page that updates frequently. Rather than go in and edit the page each time you want new content, you could simply write a post, mark it in a special category, exclude that category from the main blog [this tutorial], and have posts within the special category appear on the page [another post]. Shoo! That <em>sounds</em> like a lot, but it is actually very simple.</p><p>Consider this post part of a series in which I will explain the process of excluding a post from the main blog, then having it appear on another page [instead of page content, that is].</p><h2>The Code</h2><p>Alright guys and gals, this is super easy to pull off. Simply copy and paste the code in the box below and change the number to the Category ID for your site. That&#8217;s it!</p><pre>function exclude_cat($query) {
if ( $query->is_home) {
	$query-> set('cat','-13');
	}
return $query;
}
add_filter('pre_get_posts','exclude_cat');</pre><p>Don&#8217;t forget to get your copy of <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis</a>!</p> ]]></content:encoded> <wfw:commentRss>http://thesistutor.com/how-to-exclude-posts-of-a-certain-category-in-thesis/feed/</wfw:commentRss> <slash:comments>18</slash:comments> </item> <item><title>How To Make A Custom Page Template Using Thesis</title><link>http://thesistutor.com/how-to-make-a-custom-page-template-using-thesis/</link> <comments>http://thesistutor.com/how-to-make-a-custom-page-template-using-thesis/#comments</comments> <pubDate>Sat, 18 Jul 2009 21:52:17 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[Content]]></category><guid
isPermaLink="false">http://thesistutor.com/?p=438</guid> <description><![CDATA[Watch Me First! In this video, I will show you how to create a custom page template using Thesis. In theory, this could be used on any page; I just happen to do the home page in this example. Many people have asked me how to move their blog to a different part of their [...]]]></description> <content:encoded><![CDATA[<p></p><p><embed
src="http://thesistutor.com/wp-content/uploads/2009/07/custom-page-template.mov" width="740" height="470" /></p><div
id="me_first"><a
href="http://thesistutor.com/how-to-make-a-static-homepage-with-wordpress-and-thesis/">Watch Me First!</a></div><p>In this video, I will show you how to create a custom page template using <a
href="http://thesistutor.com/diythemes">Thesis</a>. In theory, this could be used on any page; I just happen to do the home page in this example. Many people have asked me how to move their blog to a different part of their site and create a custom home page or landing page (in sales). This technique is very useful for those of you who have a product you want to sell and would like your website visitors to see the product as soon as they come to your site.</p><p>Here is the PHP I used in this tutorial:</p><pre>remove_action('thesis_hook_custom_template','thesis_custom_template_sample');

function sales_page() {
?>
<em>Your custom HTML here.</em>
&#60&#63php
}

add_action('thesis_hook_custom_template','sales_page');
</pre><p>Feel free to name your function anything you would like. Since this video is from a request for a guy who is trying to make a sales landing page, I just happen to name my function <code>sales_page</code>.</p><p><strong>Make sure to give your page a unique custom class via the Thesis in-page options!</strong></p><p>Also, don&#8217;t forget to either upgrade or <a
href="http://thesistutor.com/diythemes">Get Your Thesis Developer&#8217;s Package!</a></p><p>Please send all questions to ThesisTutor [at] gmail [dot] com!</p> ]]></content:encoded> <wfw:commentRss>http://thesistutor.com/how-to-make-a-custom-page-template-using-thesis/feed/</wfw:commentRss> <slash:comments>18</slash:comments> <enclosure
url="http://thesistutor.com/wp-content/uploads/2009/07/custom-page-template.mov" length="18245154" type="video/quicktime" /> </item> <item><title>Make A Static Homepage With WordPress And Thesis</title><link>http://thesistutor.com/how-to-make-a-static-homepage-with-wordpress-and-thesis/</link> <comments>http://thesistutor.com/how-to-make-a-static-homepage-with-wordpress-and-thesis/#comments</comments> <pubDate>Sat, 18 Jul 2009 21:14:10 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[Content]]></category><guid
isPermaLink="false">http://thesistutor.com/?p=429</guid> <description><![CDATA[This is the first installment of two videos that are designed to show you how to make an awesome static home page using WordPress and Thesis. This video will show you how to use only WordPress with a dash of Thesis to create a very simple, yet effective, static homepage. This is useful for those [...]]]></description> <content:encoded><![CDATA[<p></p><p><embed
src="http://thesistutor.com/wp-content/uploads/2009/07/Static-Homepage-1.mov" width="740" height="470" /></p><p>This is the first installment of two videos that are designed to show you how to make an awesome static home page using WordPress and <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis</a>. This video will show you how to use only WordPress with a dash of <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis</a> to create a very simple, yet effective, static homepage. This is useful for those of you who are not primarily bloggers and desire to, perhaps, showcase a product or service. In essence, you are simply creating a page in WordPress, using <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis</a> to determine the text of the home nav menu item, and moving the blog to another part of your site.</p><p>It is important to note that although the nav menu will say &#8220;Home&#8221; for the page you choose as the static homepage, the actual page name is determined by what you call it in WordPress.</p><p>Again, this is a very simple technique for those of you wishing to simply make a static homepage. This is also the <em><strong>first step to creating a custom page template</strong></em>. So, if you are looking to do more custom work, you will still need to <strong><em>watch this video first</em></strong>.</p><p>Remember to <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">Get Thesis</a> and take your blogging to a new level of efficiency and professionalism.</p><p>Send your questions to: thesistutor [at] gmail [dot] com</p> ]]></content:encoded> <wfw:commentRss>http://thesistutor.com/how-to-make-a-static-homepage-with-wordpress-and-thesis/feed/</wfw:commentRss> <slash:comments>19</slash:comments> <enclosure
url="http://thesistutor.com/wp-content/uploads/2009/07/Static-Homepage-1.mov" length="11555577" type="video/quicktime" /> </item> <item><title>How To Add an Image After the Content in Thesis</title><link>http://thesistutor.com/how-to-add-an-image-after-content/</link> <comments>http://thesistutor.com/how-to-add-an-image-after-content/#comments</comments> <pubDate>Wed, 17 Jun 2009 17:45:41 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[Content]]></category><guid
isPermaLink="false">http://thesistutor.com/?p=203</guid> <description><![CDATA[Recently, I was asked how to add an image after the content div. There is, of course, a hook for that. The image will appear after the prev_next div (which has the &#8220;previous entries&#8221; link). Also, this certainly is not limited to images. In theory, anything can go there. Open custom_functions.php. Enter the following fancy [...]]]></description> <content:encoded><![CDATA[<p></p><p>Recently, I was asked how to add an image after the content div. There is, of course, a <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">hook</a> for that. The image will appear <em>after</em> the prev_next div (which has the &#8220;previous entries&#8221; link). Also, this certainly is not limited to images. In theory, anything can go there.</p><ol><li><a
href="http://thesistutor.com/custom-css-custom-functions-php-location/">Open custom_functions.php.</a></li><li>Enter the following fancy pants code:<pre>function cute_lil_pic() {
?>
<em>Your img or whatever html goes here.</em>
&#60&#63php
}
add_action('thesis_hook_after_content','cute_lil_pic');</pre></li></ol><p>There you go. Just that easy. Oh yeah, don&#8217;t forget to save your work. And if you don&#8217;t have <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403159&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis, GET IT!</a></p> ]]></content:encoded> <wfw:commentRss>http://thesistutor.com/how-to-add-an-image-after-content/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 2/10 queries in 0.005 seconds using disk

Served from: thesistutor.com @ 2010-09-07 16:48:15 -->