在Wordpress中创建隐藏的自定义帖子类型

时间:2018-08-13 15:58:35

标签: wordpress plugins custom-post-type

我想以自定义帖子类型存储书籍。 但是帖子类型不能在管理菜单中修改。

我是否必须注册自定义帖子类型,还是可以仅使用wp_insert_post而无需注册自定义帖子类型books

我要实现的目标:将我的图书数据typified存储在wordpres数据库中。

感谢您的回答。

1 个答案:

答案 0 :(得分:1)

将public设为false,它将被隐藏在管理控制台中。

   register_post_type( 'custom_post_type_name', array( 

    'public' => false,

   ) );