谢谢你的回复。
我对此进行了另一次研究,得到了一些可以作为短代码使用但并不完美的东西。在我的函数中添加了以下内容。php文件,并使用[showscats]作为我在WPBakery中的短代码,它将当前自定义的帖子类型分类作为列表输出。我的CPT分类法是;项目类型;。
唯一的问题是,它显示了属于CPT的所有类别,而不是应用于当前职位的类别。
// First we create a function
function shows_cats( $atts ) {
// Inside the function we extract custom taxonomy parameter of our shortcode
extract( shortcode_atts( array(
\'custom_taxonomy\' => \'project-type\',
), $atts ) );
// arguments for function wp_list_categories
$args = array(
taxonomy => $custom_taxonomy,
title_li => \'\'
);
// We wrap it in unordered list
echo \'<ul class="portfolio-cats">\';
echo wp_list_categories($args);
echo \'</ul>\';
}
// Add a shortcode that executes our function
add_shortcode( \'showscats\', \'shows_cats\' );