发布类别归档页面

时间:2018-02-09 10:42:35

标签: php wordpress

我正在寻找一个包含所有帖子类别网格的页面。 不是帖子,只是类别。 我该怎么做?

代码或插件

2 个答案:

答案 0 :(得分:0)

创建自定义页面模板。并构建get_terms查询。并根据您的设计打印循环。

答案 1 :(得分:0)

您可以尝试使用此代码,此代码将获取所有帖子类别..

<?php
  $taxonomy     = 'category';
  $orderby      = 'name';  

  $args = array(
         'taxonomy'     => $taxonomy,
         'orderby'      => $orderby
  );
 $all_categories = get_categories( $args );
 foreach ($all_categories as $cat) {
    $category_id = $cat->term_id;       
    echo '<br /><a href="'. get_term_link($cat->slug, 'category') .'">'. $cat->name .'</a>';

}
?>