wordpress函数add_meta_box

add_meta_box 是 WordPress 进阶函数,用于在文章、页面编辑等页面添加一个设置的区域函数

参数说明:

<?php
	add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );
?>

参数解释:

$id HTML 代码中设置区域中id属性的值
$title 区域中的标题名称
$callback 添加的设置区域的显示函数(回调函数)
$post_type 在 post 还是 page 的编辑页面中显示
$context 设置区域的显示位置,主编辑区、边栏、其他
$priority 设置区域显示的优先级
$callback_args 回调函数接受的附加参数

使用实例:

function add_test_box (){//添加设置区域的函数
	add_meta_box('test_box_1', 'add_meta_box 测试','test_box_1','post','side','high',array('str1','str2'));
};
//在'add_meta_boxes'挂载 add_test_box 函数
add_action('add_meta_boxes','add_test_box');
function test_box_1($post,$boxargs){//显示设置区域的回调函数
	echo"add_meta_box 测试";
};

官方文档:add_meta_box