<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>Support Forum - Topic: &#34;Next&#34; button in a post?</title>
		<link>http://www.kriesi.at/support/topic/next-button-in-a-post</link>
		<description>Support Forum - Topic: &quot;Next&quot; button in a post?</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 23:31:13 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/next-button-in-a-post" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "&#34;Next&#34; button in a post?"</title>
			<link>http://www.kriesi.at/support/topic/next-button-in-a-post#post-10273</link>
			<pubDate>Wed, 15 Dec 2010 11:46:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bei337 on "&#34;Next&#34; button in a post?"</title>
			<link>http://www.kriesi.at/support/topic/next-button-in-a-post#post-10247</link>
			<pubDate>Tue, 14 Dec 2010 19:34:34 +0000</pubDate>
			<dc:creator>Bei337</dc:creator>
			<guid isPermaLink="false">10247@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "&#34;Next&#34; button in a post?"</title>
			<link>http://www.kriesi.at/support/topic/next-button-in-a-post#post-10218</link>
			<pubDate>Tue, 14 Dec 2010 11:09:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10218@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
have a look at this page: &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/posts_nav_link&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/posts_nav_link&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It tells you how to use and customize the code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bei337 on "&#34;Next&#34; button in a post?"</title>
			<link>http://www.kriesi.at/support/topic/next-button-in-a-post#post-10166</link>
			<pubDate>Mon, 13 Dec 2010 03:42:56 +0000</pubDate>
			<dc:creator>Bei337</dc:creator>
			<guid isPermaLink="false">10166@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the reply!  Is there anyway to stylize this so the &#34;Previous&#34; and &#34;Next&#34; links are separated further apart?&#60;/p&#62;
&#60;p&#62;As you can see:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wpwallpaper.com/dark/bluedroid/&#34; rel=&#34;nofollow&#34;&#62;http://wpwallpaper.com/dark/bluedroid/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the link to the previous post and the link to the next post are close together.  I want the Next post button to align right.  I'm new to PHP so thanks for your patience and guidance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "&#34;Next&#34; button in a post?"</title>
			<link>http://www.kriesi.at/support/topic/next-button-in-a-post#post-10153</link>
			<pubDate>Sun, 12 Dec 2010 08:47:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10153@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;you can use following code to achieve what you want:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php previous_post(); ?&#38;gt;    &#38;lt;?php next_post(); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Insert it into single.php like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php previous_post(); ?&#38;gt;    &#38;lt;?php next_post(); ?&#38;gt;
	 			&#38;lt;?php edit_post_link(&#38;#39;Edit&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;&#38;#39;); ?&#38;gt;
	 			&#38;lt;!--end entry-content--&#38;gt;
	 			&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Bei337 on "&#34;Next&#34; button in a post?"</title>
			<link>http://www.kriesi.at/support/topic/next-button-in-a-post#post-10104</link>
			<pubDate>Sat, 11 Dec 2010 03:11:30 +0000</pubDate>
			<dc:creator>Bei337</dc:creator>
			<guid isPermaLink="false">10104@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey guys,&#60;/p&#62;
&#60;p&#62;I'd like to have navigation buttons &#34;Next&#34; and &#34;Previous&#34; in each of my posts, how could I do that?&#60;/p&#62;
&#60;p&#62;For example, if you go to this page: &#60;a href=&#34;http://wpwallpaper.com/dark/bluedroid/&#34; rel=&#34;nofollow&#34;&#62;http://wpwallpaper.com/dark/bluedroid/&#60;/a&#62; I want the two buttons on it.  &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
