自WP 3.1以来,支持以下类型的URL:
register_taxonomy( \'types\', \'post\', array(
\'hierarchical\' => true,
\'rewrite\' => array( \'hierarchical\' => true ),
...
);
请记住在进行更改后刷新重写规则。
用于父术语和子术语的模板是分类类型。php:
$current_term = get_queried_object();
if ( 0 == $current_term->parent ) {
// it\'s a parent term; display it\'s child terms using wp_list_categories() etc.
} else {
// it\'s a child term; display the posts using The Loop etc.
}