如何获取分类法customcategorie的所有术语
我试图在分类法中保留代码。php
<?php
/*
Template Name:Taxoo
*/
get_header();
?>
<?php $term = get_term_by( \'slug\', get_query_var( \'term\' ), get_query_var( \'taxonomy\' ) ); ?>
<h2>
<?php
$args = array(
\'type\' => \'post\',
\'child_of\' => 0,
\'parent\' => 0,
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'hide_empty\' => 0,
\'hierarchical\' => 1,
\'taxonomy\' => \'customcategorie\'
);
foreach ( get_categories( $args ) as $taxonomy_cat ) {
echo \'<li>\' .
wp_get_attachment_image( $taxonomy_cat->term_image, \'thumbnail\' ) .
$taxonomy_cat->name .
\'</li>\';
}
?>
<?php
get_footer();
?>