您可以编写一个脚本来循环使用数据创建的文件,并一次处理一行。在循环中,您将有如下代码。当然,您可以将我的示例值Scotland、Glasgow、其描述和slug替换为表示正在处理的行的数据的变量。
$parent_term = term_exists( \'Scotland\', \'location\' ); // find parent term
$parent_term_id = $parent_term[\'term_id\']; // get numeric term id
wp_insert_term(
\'Glasgow\', // the term
\'location\', // the taxonomy
array(
\'description\'=> \'Describe Glasgow.\',
\'slug\' => \'glasgow\', // what to use in the url for term archive
\'parent\'=> $parent_term_id
)
);
此商业插件
GD Custom
Posts And Taxonomies Tools 包括用于导入/导出分类法标记的功能。这可能是值得的,这取决于你如何珍惜你的时间。