0

我是 WordPress 的新手,我刚刚在名为艺术的自定义帖子类型下创建了一个名为类别的新自定义分类法。有没有办法可以创建一个自定义页面来显示“类别”的自定义类型?这样用户可以导航到艺术/类别并查看类别分类下的所有术语。

4

3 回答 3

1

在您的主题文件夹中创建一个名为 taxonomy-categories.php 的文件,并将您的循环包含在其中...

此处的示例循环:

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
  <h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
    <?php the_title(); ?>
    </a></h2>
  <?php the_conetent(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>

此循环将显示您分配给名为“类别”的自定义分类的所有帖子

有关详细信息,请查看:http ://codex.wordpress.org/Template_Hierarchy

于 2012-10-05T07:35:53.423 回答
0

此循环将显示您分配给名为“类别”的自定义分类的所有帖子

有关详细信息,请查看:http ://hinhcuoidep.com.vn/但我需要在主页中加载分类类别,但它在主索引模板中不起作用

于 2016-06-29T08:06:13.500 回答
0

保存一个名为 taxonomy-categories.php 的文件并将以下代码粘贴到该文件中。

            <?php
            $args_pdf = array(
            'orderby'       => 'name',
            'order'         => 'ASC'
            );
            $terms = get_terms('categories', $args_pdf);                    
            foreach($terms as $term) {
                echo '<h1><a href="'.get_term_link( $term ).'">' . $term->name . '</a></h1>'; 
            } 
            ?>
于 2015-09-08T14:59:13.617 回答