<?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 limit WordPress posts title</title>
	<atom:link href="http://www.wpgeek.com/2009/07/limit-post-title/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpgeek.com/tutorials/limit-post-title/</link>
	<description></description>
	<lastBuildDate>Fri, 23 Dec 2011 07:21:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Arman</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-800</link>
		<dc:creator>Arman</dc:creator>
		<pubDate>Fri, 23 Dec 2011 07:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-800</guid>
		<description>oh, this code rather 

post_title) &gt; 30) {echo substr(the_title($before = &#039;&#039;, $after = &#039;&#039;, FALSE), 0, 30) . &#039;...&#039;; 
} else {the_title();	} ?&gt;</description>
		<content:encoded><![CDATA[<p>oh, this code rather </p>
<p>post_title) &gt; 30) {echo substr(the_title($before = &#8221;, $after = &#8221;, FALSE), 0, 30) . &#8216;&#8230;&#8217;;<br />
} else {the_title();	} ?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arman</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-799</link>
		<dc:creator>Arman</dc:creator>
		<pubDate>Fri, 23 Dec 2011 07:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-799</guid>
		<description>post_title) &gt; 30) {
echo substr(the_title($before = &#039;&#039;, $after = &#039;&#039;, FALSE), 0, 30) . &#039;...&#039;; 
} else {the_title();	} ?&gt;

I used this code. still work. but How could I put that on the widget area. I used already a plugin that can read php. but I still not work. anyone can help me? thanks.</description>
		<content:encoded><![CDATA[<p>post_title) &gt; 30) {<br />
echo substr(the_title($before = &#8221;, $after = &#8221;, FALSE), 0, 30) . &#8216;&#8230;&#8217;;<br />
} else {the_title();	} ?&gt;</p>
<p>I used this code. still work. but How could I put that on the widget area. I used already a plugin that can read php. but I still not work. anyone can help me? thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parag</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-713</link>
		<dc:creator>Parag</dc:creator>
		<pubDate>Mon, 02 May 2011 09:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-713</guid>
		<description>Hi thanks for giving good code for the_title function ...</description>
		<content:encoded><![CDATA[<p>Hi thanks for giving good code for the_title function &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: herp duh derp &#187; Project 4 : Custom Theme Development</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-711</link>
		<dc:creator>herp duh derp &#187; Project 4 : Custom Theme Development</dc:creator>
		<pubDate>Wed, 16 Mar 2011 11:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-711</guid>
		<description>[...] of the day? Limiting the characters in post titles on the index.php page. Resources: thislinkhere and [...]</description>
		<content:encoded><![CDATA[<p>[...] of the day? Limiting the characters in post titles on the index.php page. Resources: thislinkhere and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wpGeek</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-709</link>
		<dc:creator>wpGeek</dc:creator>
		<pubDate>Thu, 27 Jan 2011 21:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-709</guid>
		<description>well Steve, if you are making the post to automatically post on twitter then the title is taken from wordpress database, for a solution of yours I think plugin could be made.</description>
		<content:encoded><![CDATA[<p>well Steve, if you are making the post to automatically post on twitter then the title is taken from wordpress database, for a solution of yours I think plugin could be made.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-708</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 24 Jan 2011 23:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-708</guid>
		<description>Hey guys,
I&#039;ve been struggling with a similar issue for a day or two, how to limit the length of a post title in wordpress..? Well I&#039;ve got as far as it will limit what is displayed on the screen, but the problem is it is not updating or changing the original length of the title. Whilst this is not such a problem on my site, it becomes a mojor problem if I submit a post to Twitter for example.

Does anyone know how to get the_title in wordpress to update to the truncated version of the title that gets displayed on the screen..?

Thanks Steve</description>
		<content:encoded><![CDATA[<p>Hey guys,<br />
I&#8217;ve been struggling with a similar issue for a day or two, how to limit the length of a post title in wordpress..? Well I&#8217;ve got as far as it will limit what is displayed on the screen, but the problem is it is not updating or changing the original length of the title. Whilst this is not such a problem on my site, it becomes a mojor problem if I submit a post to Twitter for example.</p>
<p>Does anyone know how to get the_title in wordpress to update to the truncated version of the title that gets displayed on the screen..?</p>
<p>Thanks Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sebastian</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-702</link>
		<dc:creator>sebastian</dc:creator>
		<pubDate>Mon, 29 Nov 2010 17:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-702</guid>
		<description>hi,
how can I make the title to appear shorter only in the post (for example 10 letters), but in the head to remain the same ?!</description>
		<content:encoded><![CDATA[<p>hi,<br />
how can I make the title to appear shorter only in the post (for example 10 letters), but in the head to remain the same ?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wpGeek</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-700</link>
		<dc:creator>wpGeek</dc:creator>
		<pubDate>Tue, 19 Oct 2010 06:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-700</guid>
		<description>not sure if I understand your question can you email me?</description>
		<content:encoded><![CDATA[<p>not sure if I understand your question can you email me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: premium magazine theme</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-698</link>
		<dc:creator>premium magazine theme</dc:creator>
		<pubDate>Tue, 12 Oct 2010 09:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-698</guid>
		<description>Hi,Thanks for the nice post!
I am having some problems related to title..
how to put image or photo after or before title post in wordpress blog.
I have a few articles on my home page and I would like to make the post articles clickable. Right now my post titles are not clickable. I am using Wordpress for my site.
I want to name the page title (Page Title) different from the Post Title. If I name the page title something really optimized but the post title something short and sweet would this make my site less SEO optimized then naming the post title the same as the page title?
Please do reply!</description>
		<content:encoded><![CDATA[<p>Hi,Thanks for the nice post!<br />
I am having some problems related to title..<br />
how to put image or photo after or before title post in wordpress blog.<br />
I have a few articles on my home page and I would like to make the post articles clickable. Right now my post titles are not clickable. I am using WordPress for my site.<br />
I want to name the page title (Page Title) different from the Post Title. If I name the page title something really optimized but the post title something short and sweet would this make my site less SEO optimized then naming the post title the same as the page title?<br />
Please do reply!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mamunur Rasid</title>
		<link>http://www.wpgeek.com/tutorials/limit-post-title/comment-page-1/#comment-668</link>
		<dc:creator>Mamunur Rasid</dc:creator>
		<pubDate>Thu, 24 Jun 2010 06:49:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpgeek.com/?p=190#comment-668</guid>
		<description>Hi, 
This is such a great resource that you are providing and you give it away for free. I enjoy seeing websites that understand the value of providing a prime resource for free. I truly loved reading your post. 
Thanks!
 
Mamunur Rasid 
oDesk Outsourcing Provider. </description>
		<content:encoded><![CDATA[<p>Hi,<br />
This is such a great resource that you are providing and you give it away for free. I enjoy seeing websites that understand the value of providing a prime resource for free. I truly loved reading your post.<br />
Thanks!</p>
<p>Mamunur Rasid<br />
oDesk Outsourcing Provider.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

