php meta_box.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php meta_box.php相关的知识,希望对你有一定的参考价值。

<?php

/*******************************************************************************
Add Centre meta box to the facilities - Centre plugin - facilities Post Type
*******************************************************************************/
if(!function_exists('add_bwm_facilities_centre_meta_box'))
{
    function add_bwm_facilities_centre_meta_box()
    {

        add_meta_box("bwm_facilities_centre_meta_box", "BWM Cenres Content Override", "bwm_facilities_centre_meta_box_markup", array("facilities"), "normal", "high", null);

        $vc = new Vc_Backend_Editor();
        $vc->registerBackendJavascript();
        $vc->registerBackendCss();
        $vc->post = $post;
        // B.C:
        visual_composer()->registerAdminCss();
        visual_composer()->registerAdminJavascript();

        // meta box to render
        add_meta_box(
            'test_wpb_visual_composer',
            __( 'test WPBakery Page Builder', 'test_js_composer' ),
            array($vc,'renderEditor'),
            array("facilities"),
            'normal',
            'high'
        );


    }
    add_action("add_meta_boxes", "add_bwm_facilities_centre_meta_box");
}

以上是关于php meta_box.php的主要内容,如果未能解决你的问题,请参考以下文章

linux 安装多个PHP版本(php5.6 php7.1 php7.2 php7.3 php7.4 php8.0)nginx配置php多版本

php [guzzle php] guzzle php #php

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?