我有 50 个类别,我想在 ist 页面上显示 10 个类别,在下一页显示下 10 个类别,在下一页显示下一个 10,依此类推。我正在使用此代码。
但没有任何导航创建。但如何获得导航。
$args = array(
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
'hierarchical' => 1,
'exclude' => '',
'include' => '',
'number' => '0,10',
'taxonomy' => 'category',
'pad_counts' => false
);
$categories = get_categories($args);
// loop through the categries
foreach ($categories as $category) {
$cat_link = get_category_link($category->cat_ID);
echo '<a href="'.$cat_link.'">'.$category->name.'</a>'; // category link
echo "</br>";
}
?>