此元框仅适用于具有“publish\\u posts”功能的用户。为了向所有用户启用它,您需要覆盖主题函数中的此元框。php您可以使用“edit\\u post”功能
function add_metabox_forme(){
if ( ! class_exists( \'WPAlchemy_MetaBox\' ) )
{
include_once get_template_directory_uri() . \'/includes/wp_booster/wp-admin/external/wpalchemy/MetaBox.php\';
}
if(current_user_can(\'edit_posts\') )
{
new WPAlchemy_MetaBox(array(
\'id\' => \'td_post_theme_settings\',
\'title\' => \'Post layout settings\',
\'types\' => array(\'post\'),
\'priority\' => \'high\',
\'template\' => get_template_directory() . \'/includes/wp_booster/wp-admin/content-metaboxes/td_set_post_settings.php\',
));
}
}
add_action(\'admin_menu\', \'add_metabox_forme\', 40 );