我目前正在创建一个简码,以便在我的模板中将自定义分类术语显示为列表:
// 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'
);
我遇到了以下 2 个问题:
- 短代码(渲染)显示在我的页面顶部,而不是我在页面中放置的位置;
- PHP 控制台标记以下 2 个错误:
- 使用未定义的常量分类法 - 假定的“分类法”
- 使用未定义的常量 title_li - 假定为 'title_li'
任何帮助表示赞赏!
谢谢