WordPress 中的当前 post 自定义分类法 link

current post custom taxonomy link in WordPress

我正在尝试获取当前的 post 自定义分类法 link 并分别命名以放置一些模式数据,我的代码是:

<?php $args = array('taxonomy' => 'developer'); ?>
<?php $tax_menu_items = get_categories( $args );
foreach ( $tax_menu_items as $tax_menu_item ):?>
<meta itemprop="url" content="<?php echo get_term_link($tax_menu_item,$tax_menu_item->taxonomy); ?>"></meta>
<a href="<?php echo get_term_link($tax_menu_item,$tax_menu_item->taxonomy); ?>">
<span itemprop="name"><?php echo $tax_menu_item->name; ?></span></a>
<?php endforeach; ?>
</div>`

问题是上面的代码显示了所有 "developer" 至少有一个 post 而不是当前的 post 分类。

我该如何解决这个问题!

<meta itemprop="url" content="<?php $terms = wp_get_post_terms( $post->ID, 'developer'); foreach($terms as $term) {
            echo "" . get_term_link($term) . ""; } ?>"></meta>
        <?php $terms = wp_get_post_terms( $post->ID, 'developer'); foreach($terms as $term) {
        echo '<a href="' . get_term_link($term) . '"><span itemprop="name">' . $term->name . '</span></a>'; } 
        ?>