将div添加到自定义帖子类型的页面

时间:2016-09-15 09:35:07

标签: php html wordpress plugins backend

大家早上好,我的wordpress有问题。

enter image description here

当我点击添加按钮时,我添加了html页面的结构。 我想将此结构添加到框添加部分下的新div中。

有什么想法吗?

提前致谢

编辑1:

也许我找到了解决方案。

    add_action('add_meta_boxes', 'add_custom_meta_box', 'post_type');

function add_custom_meta_box($post_type) {
    global $post;
    if ($post_type == 'minisites') {
        add_meta_box('sections_meta_box', 'Add Section', 'show_custom_meta_box');
        echo '<div id="htmlBox" class="postbox"></div>';
    }
}

因此,在我使用jQuery设置此div的内容之后,在创建元框时创建div。正确的吗?

0 个答案:

没有答案