正在显示完整数组而不仅仅是WP_List_Table中的数据

时间:2015-05-09 12:26:54

标签: php wordpress

我收到以下错误

  

致命错误:在第230行的C:\ wordpress \ apps \ wordpress \ htdocs \ wp-content \ plugins \ realtyna \ realtyna-plugin.php中调用未定义的函数do_meta_boxes()

我正在使用xamp,因为你可以从错误中看到他们在xamp中的任何东西我需要设置为使用这个函数吗?我正在尝试添加一个简单的元框来显示添加新表单。

注意这只是一个插件类的execrt抱歉没提到。

add_meta_box('persons_form_meta_box', 'Person data', 'custom_table_example_persons_form_meta_box_handler', 'person', 'normal', 'default');

 <div class="wrap">
    <div class="icon32 icon32-posts-post" id="icon-edit"><br></div>


    <form id="form" method="POST">
         <?php /* NOTICE: here we storing id to determine will be item added or updated */ ?>
        <input type="hidden" name="id" value="<?php echo $item['id'] ?>"/>

        <div class="metabox-holder" id="poststuff">
            <div id="post-body">
                <div id="post-body-content">
                    <?php /* And here we call our custom meta box */ ?>
                    <?php do_meta_boxes('person', 'normal', $item); ?>
                    <input type="submit" value="<?php _e('Save', 'custom_table_example')?>" id="submit" class="button-primary" name="submit">
                </div>
            </div>
        </div>
    </form>
</div>

0 个答案:

没有答案