显示自定义分类值

时间:2014-09-18 05:41:58

标签: wordpress custom-taxonomy

我创建了自定义帖子类型estate_property,requirements,service,并且我们共享了property_category和property_action_category分类。但是我无法显示需求类型的分类值。

这是我的模板文件代码..

$property_category          =   get_the_term_list($post_id, 'property_category', '', ', ', '');

$property_action_category   =   get_the_term_list($post_id, 'property_action_category', '', ', ', 
'');
<?php print $property_action_category; ?> 
        <?php if( $property_action_category!='') {
                print ' '.__('and','wpestate').' ';
                } 
              print $property_category;?>

我的post_id正确无误。所以任何人都有任何想法? 我想在此模板和相关分类中显示需求帖子类型下的帖子。

1 个答案:

答案 0 :(得分:0)

尝试这样的事情:

<?php if (have_posts()) : while (have_posts()) : the_post();?>
    <ul class="property-categories">
        <?php echo get_the_term_list( get_the_ID(), 'property_category', '<li>', ',</li><li>', '</li>' ); ?>
    </ul>
    <ul class="property-actions">
        <?php echo get_the_term_list( get_the_ID(), 'property_action_category', '<li>', ',</li><li>', '</li>' ); ?>
    </ul>
<?php endwhile; endif; ?>