最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

codex - adding category and tags to admin plugins menu

programmeradmin9浏览0评论

How to create a tag and category for plugins just like the function shown below performs for pages?

function add_categories_to_pages() {
   register_taxonomy_for_object_type( 'category', 'page' );
}
add_action( 'init', 'add_categories_to_pages' );

function add_tags_to_pages() {
   register_taxonomy_for_object_type( 'post_tag', 'page' );
}
add_action( 'init', 'add_tags_to_pages');

I tried to manipulate for category but with no success

发布评论

评论列表(0)

  1. 暂无评论