<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RLM &#187; read more</title>
	<atom:link href="http://www.rlmseo.com/blog/tag/read-more/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rlmseo.com</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 03:37:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using the &#8220;More&#8221; Tag on WordPress Pages</title>
		<link>http://www.rlmseo.com/blog/read-more-link-on-wordpress-pages/</link>
		<comments>http://www.rlmseo.com/blog/read-more-link-on-wordpress-pages/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 20:53:11 +0000</pubDate>
		<dc:creator>jcrens8392</dc:creator>
				<category><![CDATA[Pages]]></category>
		<category><![CDATA["more" tag]]></category>
		<category><![CDATA[read more]]></category>

		<guid isPermaLink="false">http://www.rlmseo.com/?p=215</guid>
		<description><![CDATA[If you try to use the "more" tag on any page other than your blog's homepage, you've probably noticed that it doesn't work. In this tutorial, I show you a really simple way to enable the use of the "more" tag on other pages in your WordPress blog.]]></description>
			<content:encoded><![CDATA[<p>Some of you may notice I&#8217;ve recently added a &#8220;blog&#8221; section to this site in addition to the existing &#8220;tutorials&#8221; section. Even though I use excerpts for my summaries in the tutorials section, I wanted to use the &#8220;more&#8221; tag in the blog section to accomplish the standard blog setup with the beginning of a post on the homepage and the rest on the single post page, with a &#8220;Read more&#8221; link allowing the reader to click through to the latter.</p>
<h2>Two Blog Homepages</h2>
<p>There&#8217;s a small problem with having what essentially amounts to two blog homepages&#8230;one for the tutorials section and another for the blog section. The problem is that I have to tell WordPress to use one as the actual blog homepage, which, in my case, I&#8217;ve already set up to be the tutorials page. By default, WordPress won&#8217;t let you use the &#8220;more&#8221; tag to clip posts on any pages other than the specified homepage. So, I did a little searching and found a really simple fix for this problem over at <a href="http://weblogtoolscollection.com/archives/2007/07/09/the-more-tag-on-a-wordpress-page/">Weblog Tools Collection</a>.</p>
<h2>The Solution</h2>
<p>The solution is incredibly simple, although, if you didn&#8217;t do the exact same Google search I did you may have trouble finding it, so here it is.</p>
<p>All you have to do is add the following line just before the code to display your post content:</p>
<pre>&lt;?php global $more; $more = FALSE; ?&gt;</pre>
<p>So you end up with something like this on the page where you want your posts to be cut off (the &#8220;Blog&#8221; page in my case):</p>
<pre>&lt;?php global $more; $more = FALSE; ?&gt;
&lt;?php the_content(&#039;Read more &amp;rarr;&#039;); ?&gt;</pre>
<h2>Why It Works</h2>
<p>I haven&#8217;t looked into the specific details on why this works, but it appears that WordPress uses the global variable &#8220;$more&#8221; as a flag to tell it whether or not the &#8220;more&#8221; tag should function on a given page. By default it&#8217;s probably set for whatever page you specify as your blog&#8217;s homepage, but not the rest. The code above sets the global variable &#8220;$more&#8221; equal to FALSE before displaying the post content so that WordPress respects the &#8220;more&#8221; tag on that page.</p>
<h2>Ignoring the &#8220;More&#8221; Tag Once Again</h2>
<p>Incidentally, you can set $more = TRUE immediately after displaying your content and WordPress will ignore the &#8220;more&#8221; tag in any posts following that one&#8230;like so:</p>
<pre>&lt;?php global $more; $more = FALSE; ?&gt;
&lt;?php the_content(&#039;Read more &amp;rarr;&#039;); ?&gt;
&lt;?php $more = TRUE; ?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.rlmseo.com/blog/read-more-link-on-wordpress-pages/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Transform Your Read More Link With a Little Pizzaz</title>
		<link>http://www.rlmseo.com/blog/change-read-more-link/</link>
		<comments>http://www.rlmseo.com/blog/change-read-more-link/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 04:00:22 +0000</pubDate>
		<dc:creator>jcrens8392</dc:creator>
				<category><![CDATA[Excerpts]]></category>
		<category><![CDATA[Posts]]></category>
		<category><![CDATA[read more]]></category>

		<guid isPermaLink="false">http://www.rlmseo.com/change-read-more-link/</guid>
		<description><![CDATA[It's not the biggest change you can make, but changing the wording of your "read more" link can actually help your click-through rate.]]></description>
			<content:encoded><![CDATA[<p>Whether it be &#8220;[Read more &raquo;]&#8221; or the default &#8220;Read the rest of this entry &raquo;,&#8221; your read more link is probably boring and you may be missing out on ways to increase your click through rate by changing the wording of your &#8220;Read More&#8221; link.</p>
<p>Hey, <a href="http://www.copyblogger.com">Copyblogger</a> uses it, so it must work, right? Anyway, here&#8217;s a quick rundown of how to do it&#8230;</p>
<p>Open up <em>index.php</em> for your WordPress theme&#8230;as usual, use the default theme as a reference if you&#8217;re having trouble following along. Find the following line (it&#8217;s line #12 on the default theme):</p>
<pre>&lt;div class=&quot;entry&quot;&gt;
&lt;?php the_content(&#039;Read the rest of this entry &amp;raquo;&#039;); ?&gt;
&lt;/div&gt;</pre>
<p>The only thing you need to change is what&#8217;s between the single quotes of <em>the_content(&#8216;&#8230;&#8230;.&#8217;);</em> &#8211; now change it so it looks like this:</p>
<pre>&lt;div class=&quot;entry&quot;&gt;
&lt;?php the_content(&#039;Click to continue &amp;rarr;&#039;); ?&gt;
&lt;/div&gt;</pre>
<p>The &#8220;&amp;rarr;&#8221; part is just the <a title="ASCII Codes" href="http://www.ascii.cl/htmlcodes.htm">ascii code</a> for a right arrow. Now your <em>Read more</em> link will look like this:</p>
<p><a href="#">Click to continue &rarr;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlmseo.com/blog/change-read-more-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

