git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@153 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
20 lines
484 B
PHP
20 lines
484 B
PHP
<?php
|
|
|
|
// Set up custom taxonomies for CSV Importer custom-taxonomies.csv example. You
|
|
// can copy-and-paste the code below to your theme's functions.php file.
|
|
|
|
add_action('init', 'csv_importer_taxonomies', 0);
|
|
|
|
function csv_importer_taxonomies() {
|
|
register_taxonomy('art', 'post', array(
|
|
'hierarchical' => true,
|
|
'label' => 'Art',
|
|
));
|
|
register_taxonomy('country', 'post', array(
|
|
'hierarchical' => false,
|
|
'label' => 'Country',
|
|
));
|
|
}
|
|
|
|
?>
|