我正在尝试根据自定义帖子类型的自定义分类法构建滑块。自定义帖子是产品,分类是类型。
我已经能够成功地使分类法正确显示,但是我无法获得我添加的自定义元字段以显示。
我的工作分类显示的代码如下所示,我希望在
中显示元字段(称为blockicon)希望这是有道理的,有人可以提供帮助。谢谢!
<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>
答案 0 :(得分:0)
<?php
$args = array(
'tax_query' => array(
array(
'taxonomy' => 'sliders_category',
'field' => 'id',
'terms' => '5'
)
),
'post_type'=>'sliders',
'order'=>'ASC',
'posts_per_page'=>-1
);
query_posts($args);
while ( have_posts() ) : the_post();
?>
<?php the_title();?>
<?php the_content(); ?>
<?php
endwhile;
wp_reset_query();
?>