Comments on: Pagination Problem When Excluding Certain Categories from Blog Main Page http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/ Designing Beautiful Wordpress ThemeSat, 12 Jul 2014 09:42:49 +0000hourly1http://wordpress.org/?v=3.9.1By: Roland http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-1445329 Wed, 11 Jun 2014 08:49:25 +0000http://www.dynamicwp.net/?p=251#comment-1445329Cheers mate… ]]>By: Dave http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-511527 Fri, 13 Sep 2013 08:29:45 +0000http://www.dynamicwp.net/?p=251#comment-511527When you made these changes, what pages did you make the changes to? Your post never says or indicates which php file(s) you had to modify.

Thanks!

]]>
By: Jason http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-505787 Fri, 19 Apr 2013 02:26:00 +0000http://www.dynamicwp.net/?p=251#comment-505787Thanks very much. This post offered a solution that I was unable to find on the WordPress forum.

In case anyone is wondering, the code also works if you need to limit results to one category, rather than exclude posts from one category — i.e. it also works for cat=X, not just cat=-X.

]]>
By: Joseph01 http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-501445 Fri, 14 Dec 2012 15:30:28 +0000http://www.dynamicwp.net/?p=251#comment-501445Thank You Maaaaaaaaaaaaan You Just solved my problem ;) ]]>By: vietpn http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-500946 Sat, 04 Aug 2012 15:01:25 +0000http://www.dynamicwp.net/?p=251#comment-500946like this @vietpn … ]]>By: DJ http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-484109 Sun, 18 Mar 2012 15:27:22 +0000http://www.dynamicwp.net/?p=251#comment-484109I’m using the following code (as per your suggestion) on my homepage. The homepage lists the 5 most recent post …. but the OLDER POSTS link takes me to a page that lists the same 5 most recent posts (not 6-10)

$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
echo $paged;
query_posts(‘posts_per_page=’.$numposts.’order=DESC&paged=’.$paged);

So, oddly enough, I changed paged=’.$paged to paged=’.$page
$page outputted the page you were on. $paged always displayed ’1′ for some reason. So, here is what worked for me…

$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(‘posts_per_page=’.$numposts.’order=DESC&paged=’.$page);

]]>
By: Jorch http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-455464 Mon, 27 Feb 2012 21:44:36 +0000http://www.dynamicwp.net/?p=251#comment-455464thanks a lot bud!! you saved my life ]]>By: Melinka http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-234413 Mon, 26 Sep 2011 19:38:46 +0000http://www.dynamicwp.net/?p=251#comment-234413Thanks a lot!!! Finally!! ]]>By: Problema con paginación cuando se excluyen Categorías en Wordpress http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-219590 Wed, 14 Sep 2011 07:38:44 +0000http://www.dynamicwp.net/?p=251#comment-219590[...] http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-f… Tweet [...] ]]>By: edu http://www.dynamicwp.net/articles-and-tutorials/pagination-problem-when-excluding-certain-category-from-blog-main-page/comment-page-1/#comment-218794 Tue, 13 Sep 2011 11:41:32 +0000http://www.dynamicwp.net/?p=251#comment-218794I love you!!!

thank you!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! :)

]]>