你错过了$args
对于add_meta_box
.
正确的用法是(Codex):
add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );
您忘记设置
context
, 加上它,你就会没事了。
add_meta_box(
\'content-on-page\',
\'Content On Page\',
\'ila_render_meta_box\',
\'page\',
\'normal\', // add this line
\'high\'
);