trying to page the wp list category function or something along those lines where i can paginate a list of all my categories?
trying to page the wp list category function or something along those lines where i can paginate a list of all my categories?
i am looking for the same thing
do you need a 1 2 3 4 pagination?
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.
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
any results?
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]
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?
what plugin?
WP-PageNavi: http://wordpress.org/extend/plugins/wp-pagenavi/
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.
figured it out
gbaka Please share the code. It would help me.
This topic has been closed to new replies.