在自定义元框中复制特色图像功能

时间:2018-03-25 作者:lblankenship

我想知道如何添加一个链接/按钮,当单击该链接/按钮时,将打开设置特色图像模式,并执行与在原始元框中单击相同的功能。我想删除原来的“特色图片”元框,这样我就可以在我的自定义框中对其他一些字段进行分组。

任何帮助都将不胜感激!

1 个回复
SO网友:mmm

您可以尝试在元数据库中添加自定义内容:

add_action("add_meta_boxes", function (string $post_type, \\WP_Post $post) {

    // the post type can be tested here


    $GLOBALS["wp_meta_boxes"]["page"]["side"]["low"]["postimagediv"]["callback"] = function ($post) {

        // the original content to select the featured image
        post_thumbnail_meta_box($post);


        ?>

            <p>
                custom content
            </p>

        <?php

    };


}, 10, 2);

结束