我正在为我创建的WordPress主题使用自定义帖子类型UI和自定义字段插件。
我创建了一个自定义的post类型price,并使用自定义post类型UI创建了一个名为price\\u类型的自定义分类法。
在我的价格页面上,我可以使用以下代码轻松地循环浏览内置分类法“类别”:
$categories = get_terms(\'category\');
foreach( $categories as $category ):
?>
<section class="pricing">
<h2><?php echo $category->name; // Print the cat title ?></h2>
</section>
<?php endforeach; ?>
如果我尝试对我的自定义分类法执行相同的操作,即使我添加了条目,我还是一无所获?
$categories = get_terms(\'price_types\');
foreach( $categories as $category ):
?>
<section class="pricing">
<h2><?php echo $category->name; // Print the cat title ?></h2>
</section>
<?php endforeach; ?>
有人知道我做错了什么吗?