wordpress建站:Categories, Tags 及 Taxonomies 的区别

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/

展开阅读全文
相关内容