你好@Joann:
创建后期管理元数据库时,the standard way to get the Post\'s ID in a metabox is via a $post
parameter in the callback function. 以下是代码的子集from the Codex 找到了与您发布的相同的页面,但在我将其更新以删除2个错误后:
希望这是自嘲?
add_action(\'add_meta_boxes\', \'myplugin_add_custom_box\');
function add_my_meta_box() {
add_meta_box(\'metabox_id\', \'Metabox Title\', \'my_metabox_callback\',
\'page\', \'normal\', \'low\');
}
function my_metabox_callback($post, $metabox) {
echo get_post_meta($post->ID,\'my_custom_field\',true);
}