<?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: Tutorial: How to display short blog title in WordPress</title>
	<atom:link href="http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress</link>
	<description>Help for small business</description>
	<lastBuildDate>Sun, 05 Feb 2012 09:12:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Can</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-22</link>
		<dc:creator>Can</dc:creator>
		<pubDate>Sat, 20 Aug 2011 04:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-22</guid>
		<description>thank you so much. im just looking for</description>
		<content:encoded><![CDATA[<p>thank you so much. im just looking for</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne Dorko</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-21</link>
		<dc:creator>Anne Dorko</dc:creator>
		<pubDate>Wed, 17 Aug 2011 14:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-21</guid>
		<description>Yep, that should work! I haven&#039;t tested that code, but it looks right.</description>
		<content:encoded><![CDATA[<p>Yep, that should work! I haven&#8217;t tested that code, but it looks right.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roger</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-20</link>
		<dc:creator>roger</dc:creator>
		<pubDate>Wed, 17 Aug 2011 10:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-20</guid>
		<description>you mean some thing like this 

function short_title() {
 $title = wpsc_the_product_title();
 $count = strlen($title);
 if ($count &gt;= 25) {
 $title = substr($title, 0, 25);
 $title .= &#039;...&#039;;
 }
 echo $title;
}</description>
		<content:encoded><![CDATA[<p>you mean some thing like this </p>
<p>function short_title() {<br />
 $title = wpsc_the_product_title();<br />
 $count = strlen($title);<br />
 if ($count &gt;= 25) {<br />
 $title = substr($title, 0, 25);<br />
 $title .= &#8216;&#8230;&#8217;;<br />
 }<br />
 echo $title;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne Dorko</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-19</link>
		<dc:creator>Anne Dorko</dc:creator>
		<pubDate>Tue, 16 Aug 2011 22:03:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-19</guid>
		<description>All you need to do is substitute 

get_the_title() 

with 

wpsc_the_product_title()</description>
		<content:encoded><![CDATA[<p>All you need to do is substitute </p>
<p>get_the_title() </p>
<p>with </p>
<p>wpsc_the_product_title()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne Dorko</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-18</link>
		<dc:creator>Anne Dorko</dc:creator>
		<pubDate>Tue, 16 Aug 2011 21:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-18</guid>
		<description>You should still be able to do this from your functions.php! </description>
		<content:encoded><![CDATA[<p>You should still be able to do this from your functions.php!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roger</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-17</link>
		<dc:creator>roger</dc:creator>
		<pubDate>Tue, 16 Aug 2011 10:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-17</guid>
		<description>php echo wpsc_the_product_title();

sorry for multiply post</description>
		<content:encoded><![CDATA[<p>php echo wpsc_the_product_title();</p>
<p>sorry for multiply post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roger</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-16</link>
		<dc:creator>roger</dc:creator>
		<pubDate>Tue, 16 Aug 2011 10:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-16</guid>
		<description>have any idea how to use short tile for wp -ecommerce 
currently i am using 



Thanks in Advance</description>
		<content:encoded><![CDATA[<p>have any idea how to use short tile for wp -ecommerce<br />
currently i am using </p>
<p>Thanks in Advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-15</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Tue, 13 Jul 2010 09:12:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-15</guid>
		<description>another way

here must be the php opener

wp_title(&#039;&#039;, true, &#039;&#039;, true); 

and here you must close the php code</description>
		<content:encoded><![CDATA[<p>another way</p>
<p>here must be the php opener</p>
<p>wp_title(&#8221;, true, &#8221;, true); </p>
<p>and here you must close the php code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-14</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Tue, 13 Jul 2010 09:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-14</guid>
		<description>hmmm, this post script can&#039;t show the call code :))))))))))))))))
ok,  I try this way - all from bottom must be in one sequence, in one line

start_code__end_code

end delete start_code_  and _end_code</description>
		<content:encoded><![CDATA[<p>hmmm, this post script can&#8217;t show the call code <img src='http://www.annedorko.com/site/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )))))))))))))))<br />
ok,  I try this way &#8211; all from bottom must be in one sequence, in one line</p>
<p>start_code__end_code</p>
<p>end delete start_code_  and _end_code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.annedorko.com/blog/tutorial-how-to-display-short-blog-title-in-wordpress#comment-13</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Tue, 13 Jul 2010 08:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.annedorko.com/?p=69#comment-13</guid>
		<description>try to change it to work with 3.0, brgs</description>
		<content:encoded><![CDATA[<p>try to change it to work with 3.0, brgs</p>
]]></content:encoded>
	</item>
</channel>
</rss>

