从多个自定义分类中获取发布术语

时间:2018-05-07 作者:10Y01

为了将post\\u标记和自定义分类从post分配给类,我一直在尝试这样做。

$terms = get_the_terms( $post->ID, array( \'post_tag\', \'custom\' );

if ( $terms ) {
    foreach ( $terms as $term ) {
        $termString .= $term->slug . \' \';
    }
}

<div class="taxonomies here">content</div>
出于某种原因,这不起作用,似乎get\\u the\\u terms不支持多个分类的数组。如何解决这个问题?

谢谢

1 个回复
SO网友:10Y01

总之,我从另一个问题中发现了这个问题:

$terms = wp_get_object_terms( $post_id, get_object_taxonomies(\'post\') );
这是可行的。

结束

相关推荐