Wordpress自定义支持自定义帖子类型

时间:2017-08-23 16:15:48

标签: php wordpress

我只是使用register_post_type生成我的新帖子类型' gcg_block'并在管理页面中生成ui菜单。使用add_post_type_support作为'作者'在我的页面中给出了作者列(尽管不可排序)。我想添加一个列' Shortcode'到此列表并填写自定义数据。我相信我想创建一个新的支持并将其注册到我的帖子类型,但我无法找到我能找到的地方。我是在正确的轨道上还是我应该为此分类?

我尝试制作的内容类似于“联系表单7”列表,其中显示可以复制到wordpress中的区域的短代码。

add_action( 'init', 'GCG_init' );
// 
function GCG_init() {

  //Register custom post type and create menu
  register_post_type( 'gcg_block', array(
    'labels' => array(
        'name' => 'Generic Content',
        'singular_name' => 'Block' ),
    'public' => false,
    'show_ui' => true,
    'show_in_menu' => true,
    //'supports' => array( 
    //  'title',
    //  'author',
    //  'editor',)
  ));

  add_post_type_support( 'gcg_block', 'author' );
}

1 个答案:

答案 0 :(得分:0)

所以我走错了路。我正在使用this blog post将新列添加到自定义帖子类型和this example元数据生成器以编辑元数据。我不需要创建自定义支持。谢谢大家的帮助!