<?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 for Palehorse Information Services</title>
	<atom:link href="http://palehorseinformation.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://palehorseinformation.com</link>
	<description>Bridging the gap between web development and web design</description>
	<lastBuildDate>Sat, 06 Mar 2010 05:00:55 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Fixing The Excerpt In WordPress by Duncan MacLeod</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-36</link>
		<dc:creator>Duncan MacLeod</dc:creator>
		<pubDate>Sat, 06 Mar 2010 05:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-36</guid>
		<description>Sorry, Erik, this function doesn&#039;t touch the manual Excerpt creation (the field under the post edit box) in any way, it only modifies the way the standard automatic Excerpt is created.

However, if I understand your question correctly, you can try something like the following to give you a &quot;Read More...&quot; type link at the end of a manually created Excerpt. Just add this where appropriate in place of the &lt;code&gt;the_excerpt()&lt;/code&gt; tags in your template files:

&lt;pre&gt;
&lt;?php the_excerpt(); ?&gt;
	&lt;?php if ( has_excerpt() ) { ?&gt;
		&lt;p&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;nofollow&quot; title=&quot;Continue Reading &lt;?php the_title_attribute(); ?&gt;...&quot;&gt;Read the rest of &lt;?php the_title(); ?&gt; &raquo;&lt;/a&gt;&lt;/p&gt;
	&lt;?php } ?&gt;
&lt;/pre&gt;

Try that, and let me know if that was what you are looking for. Good luck!</description>
		<content:encoded><![CDATA[<p>Sorry, Erik, this function doesn&#8217;t touch the manual Excerpt creation (the field under the post edit box) in any way, it only modifies the way the standard automatic Excerpt is created.</p>
<p>However, if I understand your question correctly, you can try something like the following to give you a &#8220;Read More&#8230;&#8221; type link at the end of a manually created Excerpt. Just add this where appropriate in place of the <code>the_excerpt()</code> tags in your template files:</p>
<pre>
&lt;?php the_excerpt(); ?&gt;
	&lt;?php if ( has_excerpt() ) { ?&gt;
		&lt;p&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="nofollow" title="Continue Reading &lt;?php the_title_attribute(); ?&gt;..."&gt;Read the rest of &lt;?php the_title(); ?&gt; &amp;raquo;&lt;/a&gt;&lt;/p&gt;
	&lt;?php } ?&gt;
</pre>
<p>Try that, and let me know if that was what you are looking for. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by Erik</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-33</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Thu, 04 Mar 2010 21:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-33</guid>
		<description>I would like the manual excerpt to display something like &lt;em&gt;&lt;code&gt;&lt;a href=&quot;permalink&quot; rel=&quot;nofollow&quot;&gt;link&lt;/a&gt;&lt;/code&gt;&lt;/em&gt; Is it possible so that when I write in custom excerpt (under the create post in admin) so that something like &lt;em&gt;&lt;code&gt;&quot;%link  %something%&quot;&lt;/code&gt;&lt;/em&gt; becomes &lt;em&gt;&lt;code&gt;&quot;&lt;a href=&quot;http://www.domain.com/2010/03/name-of-a-post&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&quot;&lt;/code&gt;&lt;/em&gt;? I&#039;m thinking with help of an function in functions.php?</description>
		<content:encoded><![CDATA[<p>I would like the manual excerpt to display something like <em><code>&lt;a href="permalink" rel="nofollow"&gt;link&lt;/a&gt;</code></em> Is it possible so that when I write in custom excerpt (under the create post in admin) so that something like <em><code>"%link  %something%"</code></em> becomes <em><code>"&lt;a href="http://www.domain.com/2010/03/name-of-a-post" rel="nofollow"&gt;&lt;/a&gt;"</code></em>? I&#8217;m thinking with help of an function in functions.php?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by Duncan MacLeod</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-31</link>
		<dc:creator>Duncan MacLeod</dc:creator>
		<pubDate>Mon, 08 Feb 2010 20:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-31</guid>
		<description>Great! Glad you got it sorted out.</description>
		<content:encoded><![CDATA[<p>Great! Glad you got it sorted out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by a34r</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-29</link>
		<dc:creator>a34r</dc:creator>
		<pubDate>Mon, 08 Feb 2010 18:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-29</guid>
		<description>Thank you for the prompt reply....all sorted now.

I didn&#039;t realises I already had the following in my functions.php at very top of the page. (provided by theme author)

remove_filter( &#039;get_the_excerpt&#039;, &#039;wp_trim_excerpt&#039; );
add_filter( &#039;get_the_excerpt&#039;, &#039;custom_excerpt&#039; );

Now I removed the &quot;custom_excerpt&quot; and using your.....works like a dream.

cheers</description>
		<content:encoded><![CDATA[<p>Thank you for the prompt reply&#8230;.all sorted now.</p>
<p>I didn&#8217;t realises I already had the following in my functions.php at very top of the page. (provided by theme author)</p>
<p>remove_filter( &#8216;get_the_excerpt&#8217;, &#8216;wp_trim_excerpt&#8217; );<br />
add_filter( &#8216;get_the_excerpt&#8217;, &#8216;custom_excerpt&#8217; );</p>
<p>Now I removed the &#8220;custom_excerpt&#8221; and using your&#8230;..works like a dream.</p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by Duncan MacLeod</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-28</link>
		<dc:creator>Duncan MacLeod</dc:creator>
		<pubDate>Mon, 08 Feb 2010 15:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-28</guid>
		<description>You shouldn&#039;t need to do anything differently than you would normally do when calling &lt;code&gt;the_excerpt()&lt;/code&gt;. Just copy and paste the function described above into your theme&#039;s &lt;code&gt;functions.php&lt;/code&gt; file, then call &lt;code&gt;the_excerpt();&lt;/code&gt; where you want the excerpt to be shown (in your &lt;code&gt;index.php&lt;/code&gt; or wherever).

Just remember that the &lt;code&gt;the_excerpt();&lt;/code&gt; template tag needs to be used within &lt;a href=&quot;http://codex.wordpress.org/The_Loop&quot; rel=&quot;nofollow&quot;&gt;The Loop&lt;/a&gt;. It also needs to be wrapped in &lt;code&gt;php&lt;/code&gt; tags, like this:

&lt;code&gt;&lt;?php the_excerpt(); ?&gt;&lt;/code&gt;

Hope that helps.</description>
		<content:encoded><![CDATA[<p>You shouldn&#8217;t need to do anything differently than you would normally do when calling <code>the_excerpt()</code>. Just copy and paste the function described above into your theme&#8217;s <code>functions.php</code> file, then call <code>the_excerpt();</code> where you want the excerpt to be shown (in your <code>index.php</code> or wherever).</p>
<p>Just remember that the <code>the_excerpt();</code> template tag needs to be used within <a href="http://codex.wordpress.org/The_Loop" rel="nofollow">The Loop</a>. It also needs to be wrapped in <code>php</code> tags, like this:</p>
<p><code>&lt;?php the_excerpt(); ?&gt;</code></p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by a34r</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-25</link>
		<dc:creator>a34r</dc:creator>
		<pubDate>Sun, 07 Feb 2010 18:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-25</guid>
		<description>Hi Duncan MacLeod, I am new to php.

could you please tell me how I would call this function in my index.php?

I&#039;ve tried the followings and didn&#039;t work:
&lt;code&gt;improved_trim_excerpt(&#039;&#039;);&lt;/code&gt;

&lt;code&gt;the_excerpt();&lt;/code&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Duncan MacLeod, I am new to php.</p>
<p>could you please tell me how I would call this function in my index.php?</p>
<p>I&#8217;ve tried the followings and didn&#8217;t work:<br />
<code>improved_trim_excerpt('');</code></p>
<p><code>the_excerpt();</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easily Post Code Snippets In WordPress by Duncan MacLeod</title>
		<link>http://palehorseinformation.com/2009/06/24/easily-post-code-in-wordpress/comment-page-1/#comment-24</link>
		<dc:creator>Duncan MacLeod</dc:creator>
		<pubDate>Fri, 05 Feb 2010 21:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.palehorseinformation.com/?p=3#comment-24</guid>
		<description>Uh... &lt;a href=&quot;http://us.php.net/manual/en/index.php&quot; rel=&quot;nofollow&quot;&gt;The PHP Manual&lt;/a&gt;. Glad you liked it.</description>
		<content:encoded><![CDATA[<p>Uh&#8230; <a href="http://us.php.net/manual/en/index.php" rel="nofollow">The PHP Manual</a>. Glad you liked it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easily Post Code Snippets In WordPress by horse information</title>
		<link>http://palehorseinformation.com/2009/06/24/easily-post-code-in-wordpress/comment-page-1/#comment-23</link>
		<dc:creator>horse information</dc:creator>
		<pubDate>Fri, 05 Feb 2010 01:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.palehorseinformation.com/?p=3#comment-23</guid>
		<description>This is awesome. Where did you search for this codes? I hope you could share it to us if you don&#039;t mind. It is a great post indeed.</description>
		<content:encoded><![CDATA[<p>This is awesome. Where did you search for this codes? I hope you could share it to us if you don&#8217;t mind. It is a great post indeed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by horse information</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-22</link>
		<dc:creator>horse information</dc:creator>
		<pubDate>Fri, 05 Feb 2010 01:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-22</guid>
		<description>This is very informative? How long have you been making this kind of articles? It looks like you have been doing this for decades. You are exceptional. </description>
		<content:encoded><![CDATA[<p>This is very informative? How long have you been making this kind of articles? It looks like you have been doing this for decades. You are exceptional. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing The Excerpt In WordPress by Duncan MacLeod</title>
		<link>http://palehorseinformation.com/2009/12/23/fixing-the-wordpress-excerpt/comment-page-1/#comment-21</link>
		<dc:creator>Duncan MacLeod</dc:creator>
		<pubDate>Thu, 28 Jan 2010 02:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://palehorseinformation.com/?p=74#comment-21</guid>
		<description>I can&#039;t be sure without seeing the function as installed in your &lt;code&gt;functions.php&lt;/code&gt; file. Make sure that you have added &lt;code&gt;&lt;a&gt;&lt;/code&gt; to the exemptions line, like this:
&lt;pre&gt;
....
$text = strip_tags( $text, &#039;&lt;a&gt;&lt;b&gt;&lt;em&gt;&lt;i&gt;&lt;strong&gt;&#039; ); // allowed tags (change as needed)
....
&lt;/pre&gt;

If you have already added that tag, and it&#039;s still not working, let me know, and drop a link to the page with the excerpt in your response, so I can check out the outputted code, and then we&#039;ll go from there. :)</description>
		<content:encoded><![CDATA[<p>I can&#8217;t be sure without seeing the function as installed in your <code>functions.php</code> file. Make sure that you have added <code>&lt;a&gt;</code> to the exemptions line, like this:</p>
<pre>
....
$text = strip_tags( $text, '&lt;a&gt;&lt;b&gt;&lt;em&gt;&lt;i&gt;&lt;strong&gt;' ); // allowed tags (change as needed)
....
</pre>
<p>If you have already added that tag, and it&#8217;s still not working, let me know, and drop a link to the page with the excerpt in your response, so I can check out the outputted code, and then we&#8217;ll go from there. :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
