2024年10月17日 建站教程
分类Categories
和标签Tags
都是分类方法Taxonomies
的一种。用户可以自定义新的分类方法。
注册自定义分类需要使用register_taxonomy
函数,这是一个非常复杂的函数。但是,也可以简单的使用–只传递必须的参数,其他使用默认值。
function ipkd_create_new_tax() { register_taxonomy('new_cat', 'post', array( 'label' => '新分类', 'hierarchical' => true, )); } add_action('init', 'ipkd_create_new_tax', 0);
本文链接:http://so.lmcjl.com/news/15591/