我想你可以使用下面的代码-
$terms = get_terms( array(
\'taxonomy\' => $_GET[\'taxonomy\'], // It will get the taxonomy name from HTTP get variable.
\'hide_empty\' => false, // If you need to hide the empty taxonomy or not.
) );
现在
$terms
将是一个数组,如果有任何分类法或其他分类法,它将通过
WP_Error
例子运行a
foreach
按照您的意愿进行循环和装饰。有关更多信息
read this.