<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How To: Create a Print Friendly Thesis Website</title>
	<atom:link href="http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html/feed" rel="self" type="application/rss+xml" />
	<link>http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html</link>
	<description>Power WordPress user; Thesis, Genesis, and Headway Developer</description>
	<lastBuildDate>Wed, 01 Sep 2010 20:27:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Alderete</title>
		<link>http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html#comment-2444</link>
		<dc:creator>Alderete</dc:creator>
		<pubDate>Wed, 12 May 2010 06:45:27 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3200#comment-2444</guid>
		<description>Let&#039;s try that again, with escaped code:

echo &#039;&lt;link rel=&quot;stylesheet&quot; href=&quot;&#039; . THESIS_CUSTOM_FOLDER . &#039;/print.css&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;&#039;;</description>
		<content:encoded><![CDATA[<p>Let&#8217;s try that again, with escaped code:</p>
<p>echo &#8216;&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&#8216; . THESIS_CUSTOM_FOLDER . &#8216;/print.css&#8221; type=&#8221;text/css&#8221; media=&#8221;print&#8221; /&gt;&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alderete</title>
		<link>http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html#comment-2443</link>
		<dc:creator>Alderete</dc:creator>
		<pubDate>Wed, 12 May 2010 06:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3200#comment-2443</guid>
		<description>Rather than hard-coding the path to the print style sheet, I would recommend using one of the Thesis constants that are available, e.g.:

echo &#039;&#039;;

That way when you upgrade to Thesis 1.7 (or 2.0, etc.), you won&#039;t need to edit your code. This is especially important for a feature like a print style sheet, which you won&#039;t notice if it&#039;s not working just by reloading your site.</description>
		<content:encoded><![CDATA[<p>Rather than hard-coding the path to the print style sheet, I would recommend using one of the Thesis constants that are available, e.g.:</p>
<p>echo &#8221;;</p>
<p>That way when you upgrade to Thesis 1.7 (or 2.0, etc.), you won&#8217;t need to edit your code. This is especially important for a feature like a print style sheet, which you won&#8217;t notice if it&#8217;s not working just by reloading your site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alderete</title>
		<link>http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html#comment-2442</link>
		<dc:creator>Alderete</dc:creator>
		<pubDate>Wed, 12 May 2010 06:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3200#comment-2442</guid>
		<description>@Avinash: The code above will add the print.css style sheet header to every page on a Thesis site: Home, posts, archives, etc.

If you want to customize it for different pages, you can do it either via CSS, applying styles to elements found only on, say, the Category archives page; or, you can add an if statement to the print_css() function, e.g.:

	if( is_page(&#039;about&#039;) ) { // About page
		// echo print style sheet specific to the About page
	}
	elseif( is_home()  ) { // Blog front page
		// echo Home page print style sheet
	}
	elseif( is_single() ) { // Blog posting pages
		// echo print style sheet for posts
	}
	else { 
		// Default print style sheet
	}

Unless your needs are _very_ unusual, you should be able to do everything you want in one style sheet, by adding multiple styles.</description>
		<content:encoded><![CDATA[<p>@Avinash: The code above will add the print.css style sheet header to every page on a Thesis site: Home, posts, archives, etc.</p>
<p>If you want to customize it for different pages, you can do it either via CSS, applying styles to elements found only on, say, the Category archives page; or, you can add an if statement to the print_css() function, e.g.:</p>
<p>	if( is_page(&#8216;about&#8217;) ) { // About page<br />
		// echo print style sheet specific to the About page<br />
	}<br />
	elseif( is_home()  ) { // Blog front page<br />
		// echo Home page print style sheet<br />
	}<br />
	elseif( is_single() ) { // Blog posting pages<br />
		// echo print style sheet for posts<br />
	}<br />
	else {<br />
		// Default print style sheet<br />
	}</p>
<p>Unless your needs are _very_ unusual, you should be able to do everything you want in one style sheet, by adding multiple styles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avinash D'Souza</title>
		<link>http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html#comment-2094</link>
		<dc:creator>Avinash D'Souza</dc:creator>
		<pubDate>Fri, 05 Mar 2010 06:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3200#comment-2094</guid>
		<description>Greg,

This is so so awesome! This is precisely what I was looking for...

Would this also work at post level or only at page level?</description>
		<content:encoded><![CDATA[<p>Greg,</p>
<p>This is so so awesome! This is precisely what I was looking for&#8230;</p>
<p>Would this also work at post level or only at page level?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mfarney</title>
		<link>http://gregrickaby.com/2009/12/how-to-create-a-print-friendly-thesis-website.html#comment-1906</link>
		<dc:creator>mfarney</dc:creator>
		<pubDate>Mon, 04 Jan 2010 16:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3200#comment-1906</guid>
		<description>If I take all the tutorials from this site I&#039;m pretty sure I&#039;ll manage to build a very nice site for myself with all the functions I need. If you&#039;d only have the time to make a tutorial about getting all the forms and functions together for those people who don&#039;t have programming skills.  &lt;br&gt;________________ &lt;br&gt;Mathew Farney - &lt;a rel=&quot;follow&quot; href=&quot;http://www.123-reg.co.uk/&quot; rel=&quot;nofollow&quot;&gt;Web Hosting&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>If I take all the tutorials from this site I&#39;m pretty sure I&#39;ll manage to build a very nice site for myself with all the functions I need. If you&#39;d only have the time to make a tutorial about getting all the forms and functions together for those people who don&#39;t have programming skills.  <br />________________ <br />Mathew Farney &#8211; <a rel="follow" href="http://www.123-reg.co.uk/" rel="nofollow">Web Hosting</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
