我还没有找到我要找的东西,也不知道如何找到它。
我正在使用wp_list_categories
列出分类法的术语。我想在每个项目的末尾添加一些文本。
例如:
这是基本的wp_list_categories
我正在使用:
<?php
wp_list_categories(array(
\'taxonomy\' => \'locations\',
\'orderby\' => \'name\',
\'style\' => \'list\',
\'order\' => \'ASC\',
\'title_li\' => \'\',
\'number\' => 25,
));
?>
谢谢Final code used to accomplish what I need
<?php
$args = array(
\'taxonomy\' => \'locations\',
\'orderby\' => \'name\',
\'number\' => 25,
);
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo \'<li> <a href="/locations/\' . $category->slug . \'">\' . $category->name . \' \' . get_the_title() . \'</a> | </li>\';
}
?>