我正在尝试基于自定义帖子类型的自定义分类法构建滑块。自定义帖子是产品,分类是类型。
我已经能够成功地让分类法正确显示,但是我无法获得我添加的自定义元字段来显示。
我的工作分类显示代码如下,我想让元字段(称为块图标)显示在
希望这是有道理的,有人可以提供帮助。谢谢!
<div id="slider"><?php
$args = array( 'taxonomy' => 'type' ); $types = get_terms('type', $args);
$count = count($types); $i=0;
if ($count > 0) {
foreach ($types as $type) {
$i++;
$type_list .= '<div class="slider-' . $type->slug . ' container">';
$type_list .= '<div class="slider-text divider">';
$type_list .= '<i class="aspera-icon lrg">a</i>';
$type_list .= '<h1>' . $type->name . '</h1>';
$type_list .= '<h5>' . $type->description .'</h5>';
$type_list .= '</div>';
$type_list .= '</div>';
}
echo $type_list;
}
?>
</div>