<?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: Replacing WordPress content with an excerpt without editing theme files</title>
	<atom:link href="http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files/feed" rel="self" type="application/rss+xml" />
	<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files</link>
	<description>Life, Blogging, and WordPress</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:19:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sarbjit Singh</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-466076</link>
		<dc:creator>Sarbjit Singh</dc:creator>
		<pubDate>Wed, 02 Nov 2011 18:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-466076</guid>
		<description>You just saved me from editing my theme. I use child themes, so just needed to change one line of code. However, it is always better to do things with filters.</description>
		<content:encoded><![CDATA[<p>You just saved me from editing my theme. I use child themes, so just needed to change one line of code. However, it is always better to do things with filters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keval</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-396059</link>
		<dc:creator>Keval</dc:creator>
		<pubDate>Wed, 10 Aug 2011 19:16:35 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-396059</guid>
		<description>Thank you so much! I recently had to reinstall my theme due to a coding mess error in the header.php, and when I reinstalled, I noticed my home page was out of whack because my previous coding had not been saved.

I new integrating an excerpt was the only way, and this was the only set of instructions that worked perfectly for me. Thanks again!</description>
		<content:encoded><![CDATA[<p>Thank you so much! I recently had to reinstall my theme due to a coding mess error in the header.php, and when I reinstalled, I noticed my home page was out of whack because my previous coding had not been saved.</p>
<p>I new integrating an excerpt was the only way, and this was the only set of instructions that worked perfectly for me. Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Sampson</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-377425</link>
		<dc:creator>Jonathan Sampson</dc:creator>
		<pubDate>Tue, 12 Jul 2011 19:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-377425</guid>
		<description>Swamykant,

Reversing it (delivering the_content in the place of the_excerpt) is even easier since there&#039;s no danger of recursive calls:

&lt;pre&gt;&lt;code&gt;// Anytime my theme calls the_excerpt()`, call myCustFunct()
add_action( &#039;the_excerpt&#039;, &#039;myCustFunc&#039; );
function myCustFunc ( $data ) {
  // Spit out the_content(), disregarding $data
  the_content();
}&lt;/code&gt;&lt;/pre&gt;

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Swamykant,</p>
<p>Reversing it (delivering the_content in the place of the_excerpt) is even easier since there&#8217;s no danger of recursive calls:</p>
<pre><code>// Anytime my theme calls the_excerpt()`, call myCustFunct()
add_action( 'the_excerpt', 'myCustFunc' );
function myCustFunc ( $data ) {
  // Spit out the_content(), disregarding $data
  the_content();
}</code></pre>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swamykant</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-315408</link>
		<dc:creator>Swamykant</dc:creator>
		<pubDate>Wed, 23 Mar 2011 22:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-315408</guid>
		<description>Nice trick. But I want to the reverse way ?</description>
		<content:encoded><![CDATA[<p>Nice trick. But I want to the reverse way ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Display Wordpress Excerpt Automatically Rather Than Full Post</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-276523</link>
		<dc:creator>Display Wordpress Excerpt Automatically Rather Than Full Post</dc:creator>
		<pubDate>Tue, 11 Jan 2011 05:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-276523</guid>
		<description>[...] your first post paragraph as the excerpt (teasers in general term).This WordPress tutorial from: Justin Tadlock.You Might Like Theses Posts:Place Adsense Below Genesis Theme Framework Post TitleSet HTML Editor [...]</description>
		<content:encoded><![CDATA[<p>[...] your first post paragraph as the excerpt (teasers in general term).This WordPress tutorial from: Justin Tadlock.You Might Like Theses Posts:Place Adsense Below Genesis Theme Framework Post TitleSet HTML Editor [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Why I am not a Hybrid Core User</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-251798</link>
		<dc:creator>Why I am not a Hybrid Core User</dc:creator>
		<pubDate>Thu, 18 Nov 2010 00:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-251798</guid>
		<description>[...] than two years ago, Justin gave a correct solution to defaulting a theme to use excerpts &#8211; add a filter to the_content. Then I will be able to [...]</description>
		<content:encoded><![CDATA[<p>[...] than two years ago, Justin gave a correct solution to defaulting a theme to use excerpts &#8211; add a filter to the_content. Then I will be able to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim Lee</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-236689</link>
		<dc:creator>Kim Lee</dc:creator>
		<pubDate>Thu, 07 Oct 2010 08:45:14 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-236689</guid>
		<description>Hi Justin,
I am changing the_content with the_excerpt on almost every blog that I make. Naturally I have to repeat it on every new theme I upload and test. If I understood the benefit of your approach correctly, by making this adjustment, every theme that I upload to my blog will automatically display excerpt instead of content on the archives, front page and search page. Did I understand it correctly?</description>
		<content:encoded><![CDATA[<p>Hi Justin,<br />
I am changing the_content with the_excerpt on almost every blog that I make. Naturally I have to repeat it on every new theme I upload and test. If I understood the benefit of your approach correctly, by making this adjustment, every theme that I upload to my blog will automatically display excerpt instead of content on the archives, front page and search page. Did I understand it correctly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: baja hoodie</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-181111</link>
		<dc:creator>baja hoodie</dc:creator>
		<pubDate>Fri, 12 Mar 2010 10:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-181111</guid>
		<description>I will use this on my new themes.</description>
		<content:encoded><![CDATA[<p>I will use this on my new themes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-180755</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-180755</guid>
		<description>Thank you so much !</description>
		<content:encoded><![CDATA[<p>Thank you so much !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Replace full post by excerpts on homepage without editing your theme files</title>
		<link>http://justintadlock.com/archives/2008/08/24/replacing-wordpress-content-with-an-excerpt-without-editing-theme-files#comment-175444</link>
		<dc:creator>Replace full post by excerpts on homepage without editing your theme files</dc:creator>
		<pubDate>Wed, 20 Jan 2010 06:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=980#comment-175444</guid>
		<description>[...] to Justin Tadlock for this cool snippet!   If you enjoyed this article, please consider sharing it!   tweetmeme_style [...]</description>
		<content:encoded><![CDATA[<p>[...] to Justin Tadlock for this cool snippet!   If you enjoyed this article, please consider sharing it!   tweetmeme_style [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

