链接类别是一种与类别类似的简单分类法,名为:link_category
所以要添加一个您可以使用的wp_insert_term()
例如:
wp_insert_term(
\'My link category\', // the term
\'link_category\', // the taxonomy
array(
\'description\'=> \'this is a description.\',
\'slug\' => \'my-link-category\'
)
);
要在插件激活时实现这一切,请看
register_activation_hook