<?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: Make WordPress More Links Accessible</title>
	<atom:link href="http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/</link>
	<description>Technology Reviews, Movies and TV Shows, Personal Finance, Politics, Environment, Books...</description>
	<lastBuildDate>Tue, 07 Feb 2012 04:06:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>By: Phil Thompson</title>
		<link>http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-37</link>
		<dc:creator>Phil Thompson</dc:creator>
		<pubDate>Thu, 31 Aug 2006 08:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-37</guid>
		<description>This is exactly what I&#039;ve been looking for. Thanks.</description>
		<content:encoded><![CDATA[<p>This is exactly what I&#8217;ve been looking for. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd</title>
		<link>http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-36</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Wed, 23 Mar 2005 00:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-36</guid>
		<description>I just came upon this as I was updating my WP 1.5 install. To further aid in this implementation, here&#039;s something else. If you modify &quot;the_content&quot; on your index.php page, you can change the words used in the &quot;more&quot; link *and* you can add something before and after the title of the linked entry:
&lt;code&gt;the_content(&quot;Continue reading &quot; . the_title(&#039;&#039;,&#039;&#039;,false), 0);&lt;/code&gt;
Those two instances of &#039;&#039; in the parentheses allow for what you want before the title and what you want after the title of the page. I wanted quotation marks around and bold lettering of the title of the entry in my &quot;more&quot; link. Here&#039;s all I did:
&lt;code&gt;
the_content(&quot;Read more of &quot; . the_title(&#039;&quot;&lt;strong&gt;&#039;,&#039;&lt;/strong&gt;&quot;&#039;,false), 0);&lt;/code&gt;

Also, I wanted that link to go to just the page for the article, not bookmarked down the page to wherever I put in the &quot;more&quot; quicktag. Editing template-post-fucntions.php, I replaced this:
&lt;code&gt;            $output .= &#039; &lt;a href=&quot;&#039;. get_permalink() . &quot;#more-$id&quot;&gt;$more_link_text&lt;/a&gt;&quot;;&lt;/code&gt;
with this:
&lt;code&gt;
            $output .= &#039; &lt;a href=&quot;&#039;. get_permalink() . &quot;&quot;&gt;$more_link_text&lt;/a&gt;&quot;;&lt;/code&gt;

Opening up template-post-functions.php and searching for &quot;#&quot; will get you to that line.</description>
		<content:encoded><![CDATA[<p>I just came upon this as I was updating my WP 1.5 install. To further aid in this implementation, here&#8217;s something else. If you modify &#8220;the_content&#8221; on your index.php page, you can change the words used in the &#8220;more&#8221; link *and* you can add something before and after the title of the linked entry:<br />
<code>the_content("Continue reading " . the_title('','',false), 0);</code><br />
Those two instances of &#8221; in the parentheses allow for what you want before the title and what you want after the title of the page. I wanted quotation marks around and bold lettering of the title of the entry in my &#8220;more&#8221; link. Here&#8217;s all I did:<br />
<code><br />
the_content("Read more of " . the_title('"<strong>','</strong>"',false), 0);</code></p>
<p>Also, I wanted that link to go to just the page for the article, not bookmarked down the page to wherever I put in the &#8220;more&#8221; quicktag. Editing template-post-fucntions.php, I replaced this:<br />
<code>            $output .= ' <a href="'. get_permalink() . "#more-$id">$more_link_text</a>";</code><br />
with this:<br />
<code><br />
            $output .= ' <a href="'. get_permalink() . "">$more_link_text</a>";</code></p>
<p>Opening up template-post-functions.php and searching for &#8220;#&#8221; will get you to that line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hank</title>
		<link>http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-35</link>
		<dc:creator>Hank</dc:creator>
		<pubDate>Mon, 04 Oct 2004 08:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-35</guid>
		<description>Thanks for the tips guys, that&#039;s really helpful.</description>
		<content:encoded><![CDATA[<p>Thanks for the tips guys, that&#8217;s really helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neerav</title>
		<link>http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-33</link>
		<dc:creator>Neerav</dc:creator>
		<pubDate>Sun, 03 Oct 2004 03:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.bhatt.id.au/blog/make-wordpress-more-links-accessible/#comment-33</guid>
		<description>thanks Derek

Your &quot;Featherstone&quot; method is better than mine as it only requires editting one file, not two, and is confirmed in the &lt;a href=&quot;http://wordpress.org/docs/template/#post_content&quot;&gt;Wordpress Docs&lt;/a&gt;. I have implemented it instead of my hack.</description>
		<content:encoded><![CDATA[<p>thanks Derek</p>
<p>Your &#8220;Featherstone&#8221; method is better than mine as it only requires editting one file, not two, and is confirmed in the <a href="http://wordpress.org/docs/template/#post_content">WordPress Docs</a>. I have implemented it instead of my hack.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

