我是WordPress的新手,我刚刚创建了一个名为arts的自定义帖子类型下称为类别的新自定义分类。有没有办法创建自定义页面来显示'类别的自定义类型?这样用户可以导航到艺术/类别并查看类别分类下的所有术语。
答案 0 :(得分: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; ?>
此循环将显示分配给名为“categories”的自定义分类的所有帖子
答案 1 :(得分: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>';
}
?>
答案 2 :(得分:0)
此循环将显示分配给名为“categories”的自定义分类的所有帖子
详细信息请检查:http://hinhcuoidep.com.vn/但我需要在主页中加载分类法类别,但它在主索引模板中不起作用