<?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: Making WordPress Navigation more Usable through Pagination Patterns</title>
	<atom:link href="http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/</link>
	<description>Social business consultancy operating in and around London</description>
	<lastBuildDate>Mon, 21 May 2012 12:15:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Steve</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2308</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 14 Sep 2009 13:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2308</guid>
		<description>Hey guys, I&#039;m going to close comments on this post now, if you want to continue the discussion then please head over to this Google Group: http://groups.google.com/group/wp-proper-pagination-plugin

I think it will be easier to handle the type of discussion that&#039;s evolving around this plugin over there. 

Thanks for your interest. :)</description>
		<content:encoded><![CDATA[<p>Hey guys, I&#8217;m going to close comments on this post now, if you want to continue the discussion then please head over to this Google Group: <a href="http://groups.google.com/group/wp-proper-pagination-plugin" rel="nofollow">http://groups.google.com/group/wp-proper-pagination-plugin</a></p>
<p>I think it will be easier to handle the type of discussion that&#8217;s evolving around this plugin over there. </p>
<p>Thanks for your interest. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: schwooba</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2299</link>
		<dc:creator>schwooba</dc:creator>
		<pubDate>Fri, 04 Sep 2009 14:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2299</guid>
		<description>Hey zietguest. I like your pagnation setup! What is the template tags or php code you use in your template? I&#039;m still learning the details of php...thanks!</description>
		<content:encoded><![CDATA[<p>Hey zietguest. I like your pagnation setup! What is the template tags or php code you use in your template? I&#8217;m still learning the details of php&#8230;thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zietguest</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2264</link>
		<dc:creator>zietguest</dc:creator>
		<pubDate>Thu, 27 Aug 2009 20:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2264</guid>
		<description>Here is the html I used to achieve the pagination effect on http://ilovetypography.com

HTML:
&lt;code&gt;
            
		


            &lt;!-- page position --&gt;
            
                Page   of 
            
          

            &lt;!-- the First page --&gt;
            
                &lt;a href=&quot;&quot; &gt; &#171; First &lt;/a&gt;
            
                 &#171; First 
            
            
            &lt;!-- the previous page --&gt;
            
                &lt;a href=&quot;&quot; &gt; &#171; &lt;/a&gt;
            
                 &#171; 
            

            &lt;!-- the page links --&gt;
            
                
                    
                
                    &lt;a href=&quot;&quot;&gt;&lt;/a&gt;
                
            

            &lt;!-- the next page --&gt;
            
                &lt;a href=&quot;&quot; &gt; &#187; &lt;/a&gt;
            
                 &#187; 
            
            
            &lt;!-- the Last page --&gt;
            
                &lt;a href=&quot;&quot; &gt; Last &#187; &lt;/a&gt;
            
                 Last &#187; 
            

		
		

&lt;/code&gt; 

AND THE CSS

&lt;code&gt;
#pagination { margin-bottom:20px; clear:both; width:640px; height:30px; }
#pagination ul { border:0; padding:0; margin:0; clear:both; }
#pagination li { border:0; margin:0; padding:0; font-size:11px; list-style:none; margin-right:2px; }
#pagination li a { border:solid 1px #9aafe5; margin-right:2px; }
#pagination .previous-off,#pagination .next-off { border:solid 1px #DEDEDE; color:#888888; display:block; float:left; font-weight:bold; margin-right:2px; padding:3px 4px; }
#pagination .next a,#pagination .previous a { font-weight:bold; }
#pagination .active { background:#2e6ab1; color:#FFFFFF; font-weight:bold; display:block; float:left; padding:4px 6px; }
#pagination li a:link,#pagination a:visited { color:#0e509e; display:block; float:left; padding:3px 6px; text-decoration:none; }
#pagination li a:hover { border:solid 1px #0e509e; }

&lt;/code&gt;

Thanks this is a great plugin and should come as standard on wordpress</description>
		<content:encoded><![CDATA[<p>Here is the html I used to achieve the pagination effect on <a href="http://ilovetypography.com" rel="nofollow">http://ilovetypography.com</a></p>
<p>HTML:<br />
<code></p>
<p>            <!-- page position --></p>
<p>                Page   of </p>
<p>            <!-- the First page --></p>
<p>                &lt;a href="" &gt; &laquo; First </p>
<p>                 &laquo; First </p>
<p>            <!-- the previous page --></p>
<p>                &lt;a href="" &gt; &laquo; </p>
<p>                 &laquo; </p>
<p>            <!-- the page links --></p>
<p>                    &lt;a href=""&gt;</p>
<p>            <!-- the next page --></p>
<p>                &lt;a href="" &gt; &raquo; </p>
<p>                 &raquo; </p>
<p>            <!-- the Last page --></p>
<p>                &lt;a href="" &gt; Last &raquo; </p>
<p>                 Last &raquo; </p>
<p></code> </p>
<p>AND THE CSS</p>
<p><code><br />
#pagination { margin-bottom:20px; clear:both; width:640px; height:30px; }<br />
#pagination ul { border:0; padding:0; margin:0; clear:both; }<br />
#pagination li { border:0; margin:0; padding:0; font-size:11px; list-style:none; margin-right:2px; }<br />
#pagination li a { border:solid 1px #9aafe5; margin-right:2px; }<br />
#pagination .previous-off,#pagination .next-off { border:solid 1px #DEDEDE; color:#888888; display:block; float:left; font-weight:bold; margin-right:2px; padding:3px 4px; }<br />
#pagination .next a,#pagination .previous a { font-weight:bold; }<br />
#pagination .active { background:#2e6ab1; color:#FFFFFF; font-weight:bold; display:block; float:left; padding:4px 6px; }<br />
#pagination li a:link,#pagination a:visited { color:#0e509e; display:block; float:left; padding:3px 6px; text-decoration:none; }<br />
#pagination li a:hover { border:solid 1px #0e509e; }</p>
<p></code></p>
<p>Thanks this is a great plugin and should come as standard on wordpress</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zietguest</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2263</link>
		<dc:creator>zietguest</dc:creator>
		<pubDate>Thu, 27 Aug 2009 20:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2263</guid>
		<description>Thanks great plug in. 

I adapted it a bit so that could add &quot;Current page of Last Page&quot; to the loop.   

        /**
     * For use in the pagination loop, echos the last page
     */
    function the_last_page() {
        echo $this-&gt;max_pages;
    }
       

&lt;code&gt;
// pp_the_last_page
    if (!function_exists(&#039;pp_the_last_page&#039;)) {
        function pp_the_last_page() {
            global $pp;
            
            return $pp-&gt;the_last_page();
        }
    } &lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks great plug in. </p>
<p>I adapted it a bit so that could add &#8220;Current page of Last Page&#8221; to the loop.   </p>
<p>        /**<br />
     * For use in the pagination loop, echos the last page<br />
     */<br />
    function the_last_page() {<br />
        echo $this-&gt;max_pages;<br />
    }</p>
<p><code><br />
// pp_the_last_page<br />
    if (!function_exists('pp_the_last_page')) {<br />
        function pp_the_last_page() {<br />
            global $pp;</p>
<p>            return $pp-&gt;the_last_page();<br />
        }<br />
    } </code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2152</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 05 Aug 2009 12:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2152</guid>
		<description>Hi Krystal, yes this should be possible, I&#039;ve put a code snippet on pastebin showing how this _should_ work: http://php.pastebin.com/ffe9af6

Although I&#039;ve not tested it myself, this should hopefully give you an idea!</description>
		<content:encoded><![CDATA[<p>Hi Krystal, yes this should be possible, I&#8217;ve put a code snippet on pastebin showing how this _should_ work: <a href="http://php.pastebin.com/ffe9af6" rel="nofollow">http://php.pastebin.com/ffe9af6</a></p>
<p>Although I&#8217;ve not tested it myself, this should hopefully give you an idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krystal</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2149</link>
		<dc:creator>Krystal</dc:creator>
		<pubDate>Tue, 04 Aug 2009 19:12:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2149</guid>
		<description>I&#039;m working on a project where I want to display a summary of other page content along (at the bottom) with the actual content of that page. I use a WP_Query to get those extra content at the bottom. I want to create a pagination for those summary content but I didn&#039;t seen to be able to with your plugin. So I&#039;m wondering if there&#039;s any way I can do so?</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on a project where I want to display a summary of other page content along (at the bottom) with the actual content of that page. I use a WP_Query to get those extra content at the bottom. I want to create a pagination for those summary content but I didn&#8217;t seen to be able to with your plugin. So I&#8217;m wondering if there&#8217;s any way I can do so?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: baron</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2141</link>
		<dc:creator>baron</dc:creator>
		<pubDate>Wed, 29 Jul 2009 15:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2141</guid>
		<description>Works great, thank you</description>
		<content:encoded><![CDATA[<p>Works great, thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2140</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 29 Jul 2009 10:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2140</guid>
		<description>Thanks for the suggestion Mark, I&#039;ve submitted the plugin to the official repository, just waiting for it to be approved now!

Good luck with the project!</description>
		<content:encoded><![CDATA[<p>Thanks for the suggestion Mark, I&#8217;ve submitted the plugin to the official repository, just waiting for it to be approved now!</p>
<p>Good luck with the project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Kirby</title>
		<link>http://www.nixonmcinnes.co.uk/2009/07/27/making-wordpress-navigation-more-usable-through-pagination-patterns/comment-page-1/#comment-2139</link>
		<dc:creator>Mark Kirby</dc:creator>
		<pubDate>Tue, 28 Jul 2009 17:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.nixonmcinnes.co.uk/?p=1245#comment-2139</guid>
		<description>Hey guys,

Great plugin - going to play with it later on a project I&#039;m working on. Only thing I would add, if you haven&#039;t already is you should put in the Plugin repository, we had great feedback within blog posts when we did this with a simple plugin developed at ribot. 

Cheers again.

Mark</description>
		<content:encoded><![CDATA[<p>Hey guys,</p>
<p>Great plugin &#8211; going to play with it later on a project I&#8217;m working on. Only thing I would add, if you haven&#8217;t already is you should put in the Plugin repository, we had great feedback within blog posts when we did this with a simple plugin developed at ribot. </p>
<p>Cheers again.</p>
<p>Mark</p>
]]></content:encoded>
	</item>
</channel>
</rss>

