2012-06-09 259 views
1

我正在使用自定義帖子類型和自定義類別。我需要在頁面中獲取自定義帖子類型的類別ID。我嘗試使用各種方法,但我無法獲得類別ID。從帖子ID獲取Wordpress類別ID

<?php 
    $args = array(
       'posts_per_page'=> -1, 
       'post_type' => 'professional', 
       'orderby'=> 'id', 
       'order'=> 'asc', 
       ); 
      query_posts($args); 

    $my_posts = new WP_Query($args); 
     while ($my_posts->have_posts()) : $my_posts->the_post(); // loop for posts 
    function getCurrentCatID(){ 
    global $wp_query; 
    global $post; 
    $cats = get_queried_object()->term_id; 
    $cat_ID = $cats[0]->cat_ID; 
    return $cat_ID; 
    } 
?> 
<li> 
    <div class="caption"> 
     <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> 
     <span class="industry"><?php getCurrentCatID($cat_ID); ?></span> 
    </div> 
</li> 

我沒能獲得在定製文章類型貓ID。

回答

1

試試這個。

$cat_l=get_the_term_list($post->ID, 'custom_categories', '', '&nbsp;,&nbsp;', ''); 
echo $cat_l;