2016-03-02 74 views

回答

1

正如docs

<?php $terms = wp_get_post_terms($post_id, $taxonomy, $args); ?> 

更換$taxonomy和ommit $args

<?php $terms = wp_get_post_terms($post_id, 'taxonomy_name_here'); ?> 

而且應該這樣做。

相關問題