中有一个角色列表$wp_roles
WordPress全局对象。
设置$wp_roles
到函数方法顶部的全局:
global $wp_roles;
使用
Select Field 要填充选项,请执行以下操作:
array(
\'id\' => $prefix . \'role\',
\'name\' => \'Role\',
\'type\' => \'select\',
\'use_ajax\' => false,
\'options\' => $wp_roles->get_names(),
),
注意:我没有安装Humanmade CMB来测试此代码。