您可以这样注册自定义分类法:
<?php
// Register custom taxonomy for locations
function mamaduka_register_taxonomy_location() {
register_taxonomy( \'location\', array( \'post\' ), array(
\'hierarchical\' => true,
\'label\' => \'Locations\',
\'public\' => true,
));
}
add_action( \'init\', \'mamaduka_register_taxonomy_location\' );
?>
有关自定义分类法的更多信息,请参阅Codex:
http://codex.wordpress.org/Function_Reference/register_taxonomy