<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: Using WP Page Numbers with thematic</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 25 May 2013 12:05:21 +0000</pubDate>

<item>
<title>Bluesky on "Using WP Page Numbers with thematic"</title>
<link>http://themeshaper.com/forums/topic/using-wp-page-numbers-with-thematic#post-14744</link>
<pubDate>Mon, 16 Aug 2010 09:11:32 +0000</pubDate>
<dc:creator>Bluesky</dc:creator>
<guid isPermaLink="false">14744@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you for sharing ! It works like a Charm :-))
&#60;/p&#62;</description>
</item>
<item>
<title>baboon on "Using WP Page Numbers with thematic"</title>
<link>http://themeshaper.com/forums/topic/using-wp-page-numbers-with-thematic#post-12417</link>
<pubDate>Sun, 16 May 2010 09:40:27 +0000</pubDate>
<dc:creator>baboon</dc:creator>
<guid isPermaLink="false">12417@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It s working now!!
&#60;/p&#62;</description>
</item>
<item>
<title>baboon on "Using WP Page Numbers with thematic"</title>
<link>http://themeshaper.com/forums/topic/using-wp-page-numbers-with-thematic#post-12414</link>
<pubDate>Sun, 16 May 2010 00:34:01 +0000</pubDate>
<dc:creator>baboon</dc:creator>
<guid isPermaLink="false">12414@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for the code!!! I have added it and it is working --&#38;gt; but sadly not with my category pages. There I can only see the first page and when I click on page 2 it will not be found. &#60;/p&#62;
&#60;p&#62;What have I done wrong??&#60;/p&#62;
&#60;p&#62;Hope you can help me.&#60;/p&#62;
&#60;p&#62;Greetings&#60;br /&#62;
Moritz
&#60;/p&#62;</description>
</item>
<item>
<title>JLocke on "Using WP Page Numbers with thematic"</title>
<link>http://themeshaper.com/forums/topic/using-wp-page-numbers-with-thematic#post-11090</link>
<pubDate>Tue, 30 Mar 2010 01:42:16 +0000</pubDate>
<dc:creator>JLocke</dc:creator>
<guid isPermaLink="false">11090@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;I was trying to find how to use the plug-in &#34;WP Page Numbers&#34; with thematic and I found an older post with the explanation:&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-remove-older-and-newer-posts-links#post-9408&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-remove-older-and-newer-posts-links#post-9408&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I figured I'd just sum it up and give it a better title, so anyone who happens to be looking for this info can find it easier.&#60;/p&#62;
&#60;p&#62;First, install &#34;WP Page Numbers&#34;.&#60;/p&#62;
&#60;p&#62;Add this to your functions.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Action to create the new below navigation
function childtheme_nav_below() {
		if (is_single()) { ?&#38;gt;

			&#38;lt;div id=&#38;quot;nav-below&#38;quot; class=&#38;quot;navigation&#38;quot;&#38;gt;
				&#38;lt;div class=&#38;quot;nav-previous&#38;quot;&#38;gt;&#38;lt;?php thematic_previous_post_link() ?&#38;gt;&#38;lt;/div&#38;gt;
				&#38;lt;div class=&#38;quot;nav-next&#38;quot;&#38;gt;&#38;lt;?php thematic_next_post_link() ?&#38;gt;&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;

&#38;lt;?php
		} else { ?&#38;gt;

			&#38;lt;div id=&#38;quot;nav-below&#38;quot; class=&#38;quot;navigation&#38;quot;&#38;gt;
                //this is the important bit
                &#38;lt;?php if(function_exists(&#38;#39;wp_page_numbers&#38;#39;)) { ?&#38;gt;
                &#38;lt;?php wp_page_numbers(); ?&#38;gt;
                &#38;lt;?php } else { ?&#38;gt;

				&#38;lt;div class=&#38;quot;nav-previous&#38;quot;&#38;gt;&#38;lt;?php next_posts_link(__(&#38;#39;&#38;lt;span class=&#38;quot;meta-nav&#38;quot;&#38;gt;&#38;#38;laquo&#38;lt;/span&#38;gt; Older posts&#38;#39;, &#38;#39;thematic&#38;#39;)) ?&#38;gt;&#38;lt;/div&#38;gt;
				&#38;lt;div class=&#38;quot;nav-next&#38;quot;&#38;gt;&#38;lt;?php previous_posts_link(__(&#38;#39;Newer posts &#38;lt;span class=&#38;quot;meta-nav&#38;quot;&#38;gt;&#38;#38;raquo&#38;lt;/span&#38;gt;&#38;#39;, &#38;#39;thematic&#38;#39;)) ?&#38;gt;&#38;lt;/div&#38;gt;

				&#38;lt;?php } ?&#38;gt;
			&#38;lt;/div&#38;gt;	

&#38;lt;?php
		}
}
add_action(&#38;#39;thematic_navigation_below&#38;#39;, &#38;#39;childtheme_nav_below&#38;#39;, 2);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then add this to you style.css to remove the &#34;old posts&#34; text:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* =Navigation -- */

.nav-previous {
display:none;}

.nav-next {
display:none;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Big thanks ap0019er and Method. Like I said, I take no credit for this, just wanted to make it a bit easier to find.&#60;/p&#62;
&#60;p&#62;WP PAGE NUMBERS- &#60;a href=&#34;http://wordpress.org/extend/plugins/wp-page-numbers/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-page-numbers/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
