<?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>next &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/next/feed/" rel="self" type="application/rss+xml" />
	<link>https://diythemes.com/thesis/rtfm</link>
	<description>Documentation, How-tos, and Best Practices for the Thesis WordPress Theme System</description>
	<lastBuildDate>Sun, 27 Jan 2013 18:31:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Style Previous and Next Links</title>
		<link>https://diythemes.com/thesis/rtfm/style-previous-next-links/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 04 May 2009 13:16:04 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[next]]></category>
		<category><![CDATA[previous]]></category>
		<category><![CDATA[right]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=215</guid>

					<description><![CDATA[<ul>
<li>On Single Post Pages Only</li>
<li>On All Pages</li>
<li>Previous Link on Left, Next Link on Right</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="single">On Single Post Pages Only <a href="#single" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>, then change to your preferences:</p>
<pre class="css">
/* Customize Previous and Next Links */
div.post_nav p {
color: #888888;
}

.post_nav a {
text-decoration: none;
}
</pre>
<h3 id="all_pages">On All Pages <a href="#all_pages" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>, then change to your preferences:</p>
<pre class="css">
/* Customize Previous and Next Links */
div.prev_next p {
color: #888888;
}

.prev_next a {
text-decoration: none;
}
</pre>
<h3 id="next_right">Previous Link on Left, Next Link on Right <a href="#next_right" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom div.prev_next p {
  float:right;
}

.custom div.prev_next p.previous {
  float:left;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Move Previous and Next Links</title>
		<link>https://diythemes.com/thesis/rtfm/move-previous-next-links/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 14:20:09 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[next]]></category>
		<category><![CDATA[previous]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=151</guid>

					<description><![CDATA[<ul>
<li>From After Content to Before Content</li><ul>
<li>On Single Post Pages</li>
<li>On Home, Archive, and Search Pages</li>
</ul>
<li>Remove on Home Page Only</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="before_content">From After Content to Before Content <a href="#before_content" title="Link to this section">∞</a></h3>
<h4 id="cont_single">On Single Post Pages <a href="#cont_single" title="Link to this section">∞</a></h4>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
remove_action('thesis_hook_after_content', 'thesis_prev_next_posts');
add_action('thesis_hook_before_content', 'thesis_prev_next_posts');
</pre>
<h4 id="cont_others">On Home, Archive, and Search Pages <a href="#cont_others" title="Link to this section">∞</a></h4>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
remove_action('thesis_hook_after_content', 'thesis_post_navigation');
add_action('thesis_hook_before_content', 'thesis_post_navigation');
</pre>
<h3 id="home_only">Remove on Home Page Only <a href="#home_only" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function no_home_post_nav() {
if (is_home())
  remove_action('thesis_hook_after_content', 'thesis_post_navigation');
}
add_action('thesis_hook_before_content','no_home_post_nav');</pre>
<h3 id="single_posts">Remove on Single Posts <a href="#single_posts" title="Link to this section">∞</a></h3>
<p>Go to <strong>Design Options &gt; Display Options &gt; Posts</strong>, and uncheck <em>Show previous/next post links</em>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
