为了将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不支持多个分类的数组。如何解决这个问题?
谢谢