在函数中添加一个简单函数。php文件
function get_button_styles(){
return array(
\'button\' => \'Button\',
\'button_red\' => \'Button Red\',
\'button_yellow\' => \'Button Yellow\',
);
}
使用它可以获取不同元框字段中的按钮样式
array(
\'id\' => \'all_btns\',
\'name\' => \'Button Select\',
\'type\' => \'select\',
\'options\' => get_button_styles(),
\'callback\' => \'metabox_clone_options\',
),