如何找到wordpress分类标识?
我想创建一个术语存在查询...
if (term_exists(array(
'term_id' => 4,
'term_taxonomy_ID' => x
)))
但我无法弄清楚如何找到我的分类标识的名称:'file-formats'
任何帮助都会非常棒。
约什
答案 0 :(得分:0)
你试过这个吗?
<?php
$terms = get_the_terms( $post->ID , 'file-formats' );
if($terms) {
foreach( $terms as $term_name ) {
echo $term_name->term_id."<br />";
}
}
?>
祝你好运:)
答案 1 :(得分:0)
试试这个:http://codex.wordpress.org/Function_Reference/get_taxonomies 要么 http://codex.wordpress.org/Function_Reference/get_term
试试这个:
<?php $terms = get_the_terms( $post->ID , 'taxonomy-name' );
if($terms) {
foreach( $terms as $term ) {
echo $term->term_id.'<br />';
}
}
?>