我想你已经注册了分类法,它会显示正确的链接(并生成正确的重写规则)。。。但让我们做一个清单。
1) 注册分类法并将其分配给不同的帖子类型
由您完成。。。
2) 修改重写规则
add_filter(\'locations_rewrite_rules\', \'se_119400_locations_rewrite_rules\');
function se_119400_locations_rewrite_rules(){
$rules = array();
$rules[\'location(/?(([^/]+?)(/page/?([0-9]{1,})/?)?)?)$\'] = \'index.php?locations=$matches[3]&paged=$matches[5]&post_type=any\';
return $rules;
}
分类模板创建分类模板
taxonomy-locations.php
- 这将显示帖子列表。。
4) 实际位置列表/云
wp_tag_cloud
<?php
wp_tag_cloud(array(\'taxonomy\' => \'locations\'));