Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
plugins-20250409180348
/
csv-importer
/
examples
:
functions.inc.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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', )); } ?>