<?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: Homepage Excerpts WordPress Plugin</title>
	<atom:link href="http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 07:21:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Spunky Jones</title>
		<link>http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1293661</link>
		<dc:creator>Spunky Jones</dc:creator>
		<pubDate>Sun, 08 May 2011 17:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1293661</guid>
		<description>Have there been any updates to this plugin since you posted this article? Currently, I have been using the &quot;Read More&quot; and looking for something to create the snippet automatically.</description>
		<content:encoded><![CDATA[<p>Have there been any updates to this plugin since you posted this article? Currently, I have been using the &#8220;Read More&#8221; and looking for something to create the snippet automatically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MediaGrow</title>
		<link>http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1251651</link>
		<dc:creator>MediaGrow</dc:creator>
		<pubDate>Tue, 14 Sep 2010 20:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1251651</guid>
		<description>Hi Daniel
Great plugin for helping to stop duplicate content, very useful if you have a lot of articles and if someone else is using your article,

Thank you

Marios</description>
		<content:encoded><![CDATA[<p>Hi Daniel<br />
Great plugin for helping to stop duplicate content, very useful if you have a lot of articles and if someone else is using your article,</p>
<p>Thank you</p>
<p>Marios</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1238059</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 25 Aug 2010 00:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1238059</guid>
		<description>Hello,
I really like this plugin. I have it set to show excerpts for all articles except the 1st on my homepage. It shows the 1st full length, even if I have an &quot;Insert More&quot; tag to break up the article.

I would really like the ability to use the insert more tag to inspire people to click through and open the actual article rather than reading it all on the home page.

In some cases, I&#039;ve had people link to my homepage instead of the actual post, which is not best for SEO.

Is there an easy way to accomplish this?</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I really like this plugin. I have it set to show excerpts for all articles except the 1st on my homepage. It shows the 1st full length, even if I have an &#8220;Insert More&#8221; tag to break up the article.</p>
<p>I would really like the ability to use the insert more tag to inspire people to click through and open the actual article rather than reading it all on the home page.</p>
<p>In some cases, I&#8217;ve had people link to my homepage instead of the actual post, which is not best for SEO.</p>
<p>Is there an easy way to accomplish this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tattoo Artwork</title>
		<link>http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1225077</link>
		<dc:creator>Tattoo Artwork</dc:creator>
		<pubDate>Sat, 07 Aug 2010 11:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1225077</guid>
		<description>This is a great plugin and I&#039;m surely use it on one of my blogs. Because I&#039;m new to the bloging world I want to find a plugins that will really help me to make my blog looks better and promote it in the web. I heard a lot about SEO but I don&#039;t really know how to optimize my website. Thank to your plugin I&#039;m one step ahead with SEO and optimization.</description>
		<content:encoded><![CDATA[<p>This is a great plugin and I&#8217;m surely use it on one of my blogs. Because I&#8217;m new to the bloging world I want to find a plugins that will really help me to make my blog looks better and promote it in the web. I heard a lot about SEO but I don&#8217;t really know how to optimize my website. Thank to your plugin I&#8217;m one step ahead with SEO and optimization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dodfr</title>
		<link>http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1192927</link>
		<dc:creator>Dodfr</dc:creator>
		<pubDate>Sun, 20 Jun 2010 08:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/#comment-1192927</guid>
		<description>Take care with this, strip_tags is a php function that remove as much html tags as possible but this mean it will fake the word count (in my previous comment I said I was new to WP but I am PHP developper) in the plugin php source before explode function you have :

output = strip_tags($output);
explode(&#039; &#039;, $output, $nr_word);
count($words);

this mean that all html tags are removed, then full text is exploded into an array using space as separator for each array entry, then the number of array entries is counted so this will give you the words count.

If you do what you say, removing strip_tags, this will leave hml tags make wrong word count, for example if you set 1 word count and your text begin with a word that is enclosed between a BOLD tag pair with a space separator before the word, then you&#039;ll get an array with BOLD tag as first entry as &quot;word number 1&quot;, but not your real word that will be at position 2 in the array.

Then once the text is recontructed, only the first word will be showed and this is a BOLD tag so you&#039;ll not get you real word and...worst...is may fake all the rest of your page.</description>
		<content:encoded><![CDATA[<p>Take care with this, strip_tags is a php function that remove as much html tags as possible but this mean it will fake the word count (in my previous comment I said I was new to WP but I am PHP developper) in the plugin php source before explode function you have :</p>
<p>output = strip_tags($output);<br />
explode(&#8216; &#8216;, $output, $nr_word);<br />
count($words);</p>
<p>this mean that all html tags are removed, then full text is exploded into an array using space as separator for each array entry, then the number of array entries is counted so this will give you the words count.</p>
<p>If you do what you say, removing strip_tags, this will leave hml tags make wrong word count, for example if you set 1 word count and your text begin with a word that is enclosed between a BOLD tag pair with a space separator before the word, then you&#8217;ll get an array with BOLD tag as first entry as &#8220;word number 1&#8243;, but not your real word that will be at position 2 in the array.</p>
<p>Then once the text is recontructed, only the first word will be showed and this is a BOLD tag so you&#8217;ll not get you real word and&#8230;worst&#8230;is may fake all the rest of your page.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/5 queries in 0.011 seconds using disk: basic
Object Caching 191/192 objects using disk: basic

Served from: www.dailyblogtips.com @ 2012-02-09 15:22:27 -->
