-2
我已經使用wordpress wp類型插件創建了自定義分類。我怎樣才能得到WP類型分類使用職位ID.I需要獲得分類使用特定的職位ID.Please幫助。如何使用帖子ID獲取wp類型分類?
我已經使用wordpress wp類型插件創建了自定義分類。我怎樣才能得到WP類型分類使用職位ID.I需要獲得分類使用特定的職位ID.Please幫助。如何使用帖子ID獲取wp類型分類?
正如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'); ?>
而且應該這樣做。