分类-显示帖子的字词

时间:2018-06-20 15:33:24

标签: wordpress taxonomy custom-taxonomy taxonomy-terms

我创建了自定义简码以显示自定义分类法的条款。

// First we create a function
function list_terms_forme_juridique_taxonomy( $atts ) {

// Inside the function we extract custom taxonomy parameter of our 
shortcode

extract( shortcode_atts( array(
'custom_taxonomy' => 'forme_juridique',
 ), 
                $atts ) );

// arguments for function wp_list_categories
$args = array( 
taxonomy => $custom_taxonomy,
title_li => ''
);

// We wrap it in unordered list 
echo '<ul>'; 
echo wp_list_categories($args);
echo '</ul>';
}

// Add a shortcode that executes our function
add_shortcode( 'forme_juridique', 'list_terms_forme_juridique_taxonomy' 
);

它运作良好,但问题在于显示了所有术语。我只想显示与帖子本身相对应的术语。

有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

也许get_the_terms()对您有用-它返回该帖子所附的自定义分类法的条款(您必须具有当前帖子的ID)。