我可以使用哪些挂钩将自己的HTML内容添加到CPT编辑屏幕?我用创建了自己的CPT
$args = array (
\'labels\' => array (
\'name\' => \'Catalog\',
),
\'capability_type\' => \'post\',
\'has_archive\' => true,
\'public\' => true,
\'show_in_menu\' => true,
\'rewrite\' => array (
\'slug\' => \'catalog\'
),
\'supports\' => array (
\'title\',
\'thumbnail\'
),
);
register_post_type( \'catalog\', $args );
我只使用特色图片,其余我删除了所有默认的东西,如标题编辑器。。。您可以在上面我的代码中的支持数组中看到这一点。
现在我想将我自己的HTML内容添加到此编辑页