我最近为我的分类添加了缩略图,这有一个副作用,那就是使它们所列的页面过长。因此,我希望对类别列表进行分页。
以下是我用来生成类别和缩略图列表(未设置样式)的内容:
<?php
$args=array(
\'orderby\' => \'name\',
\'order\' => \'ASC\'
);
$categories=get_categories(\'child_of=504&order_by=name&style=none&title_li=\');
foreach($categories as $category) {
echo \'
<a href="\' . get_category_link( $category->term_id ) . \'" title="\' . sprintf( __( "View all posts in %s" ), $category->name ) . \'" \' . \'> \'. get_the_term_thumbnail ( $category->term_id, category, $size = \'medium\', $attr = \'\') . \' </a>
<a href="\' . get_category_link( $category->term_id ) . \'" title="\' . sprintf( __( "View all posts in %s" ), $category->name ) . \'" \' . \'>\' . $category->name.\'</a>\';
}
?>
在试图找到解决方案时,我遇到了另一个问题(How to paginate a list of tags ) 关于标签,这似乎正是我所希望的,但迄今为止还没有成功地将两者合并在一起。任何帮助都会很好,谢谢