我有这个代码。
<?php
$categories = get_categories( array(
'taxonomy' => 'events_cat',
'orderby' => 'name',
'order' => 'ASC'
));
foreach ($categories as $category) ?>
<div>
<?php name(); ?>
</div>
<?php endforeach; ?>
我尝试显示列表类别(foreach),但这没有用。 知道为什么它不起作用吗?
答案 0 :(得分:1)
我的解决方案
添加:foreach ($categories as $category) : ?>
更新:<?php echo $category->cat_name; ?>
<?php
$categories = get_categories( array(
'taxonomy' => 'events_cat',
'orderby' => 'name',
'order' => 'ASC'
));
foreach ($categories as $category) : ?>
<div>
<?php echo $category->cat_name; ?>
</div>
<?php endforeach; ?>