如何从单词列表中创建类别?

时间:2014-01-29 作者:user45836

我有一个简单的文本文件和单词列表(柏林-汉堡-斯图加特…)等等据统计,这些城市是德国的近2000个城市。我需要在我的wordpress网站中将他们中的每一个人作为一个类别,并寻找实现这一目标的最佳方法。有没有比从仪表板手动创建每个类别更快的方法?

谢谢你的帮助!

1 个回复
最合适的回答,由SO网友:fischi 整理而成

假设你有一个很好的单词列表,你可以很容易地创建一个array 使用它们,执行一些数据操作。

之后,您可以通过$array 并相应插入术语:

$yourcities = file($filename, FILE_IGNORE_NEW_LINES); // all your valuesfrom the .txt file

foreach( $yourcities as $thiscity ) {

    wp_insert_term(
        $thiscity, // the term, in your case the name of the city
        \'category\', // the taxonomy, in your case category
        array(
            \'description\'=> \'\', // if available
            \'slug\' => \'\', // leave blank if not available
            \'parent\'=> $parent_term_id // if you do it hierarchical, be sure to insert the parent ID here
        )
    );

}

结束

相关推荐

初始化钩子函数以调用unction.php中的其他钩子

我正在尝试在init 将调用另一个钩子的钩子,如下所示:add_action( \'init\', \'loadAfterUserRegistrationHook\' ); function loadAfterUserRegistrationHook(){ add_action( \'user_meta_after_user_register\', \'createNewPost\' ); } function createNewPos