I was wondering if I can paginate wp_list_categories? I had a go with paginate_links but no luck. Or is there a good workaround? Thank you!!
<?php $orderby = 'name';
$show_count = 0;
$pad_counts = 0;
$hierarchical = 1;
$taxonomy = 'categories';
$title = '';
$exclude = '16';
$args = array(
'orderby' => $orderby,
'show_count' => $show_count,
'pad_counts' => $pad_counts,
'hierarchical' => $hierarchical,
'taxonomy' => $taxonomy,
'title_li' => $title,
'exclude' => $exclude,
'hide_empty' => 0
);
?>
<ul class="resourcelist">
<?php wp_list_categories($args); ?>
</ul>
OK, after no luck with wp_list_categories, I resorted to get_categories to get the pagination working. I hope this helps someone.