Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试添加将类别添加到我在我的 Wordpress 安装中创建的自定义帖子类型的可能性。
http://pastebin.com/DJRQvTxw
但它没有显示为该帖子类型下的选项。
您添加了带有小写字母的自定义 posttype
register_post_type( 'programmering' , $args );
在创建其类别时,您提到了大写字母
register_taxonomy( 'Programmering_category', 'Programmering', $args );
即编程
试试这个
register_taxonomy( 'programmering_category', 'programmering', $args );