i am looking for the same thing
do you need a 1 2 3 4 pagination?
Thread Starter
gbaka
(@gbaka)
yea but paginating the a list of categories is the tricky part
i don’t quite understand, maybe you have an example? i have just done today some paginating with categories, maybe it is what are you looking for.
Thread Starter
gbaka
(@gbaka)
wp category list() trying to paginate that, or something similar so I’m not paginating any post at all
<?php
$cat = 'noticias';
$category=get_category($cat);
?>
<?php
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( array('cat' => 9, 'paged'=>$page, 'showposts'=>4) );
while (have_posts()) : the_post(); ?>
hope this helps
Thread Starter
gbaka
(@gbaka)
yea pretty sure this won’t do it as paging a list of categories is not that simple, and this pages post but thanks for the help really appreciate it
if still not working, try adding after ending the loop
[Code moderated as per the Forum Rules. Please use the pastebin]
Thread Starter
gbaka
(@gbaka)
wait is the function wp_paginate from a plugin?
ah yes, sorry, it’s a plugin for the pagination nav. you want to avoid plugins?
Thread Starter
gbaka
(@gbaka)
can’t find the that function in that plugin hmmm
any luck so far?
I’ve been searching all over for a solution to this issue.