如果您将其添加到函数中,这应该会起作用。php文件。它以文本编辑器中第二行的按钮为目标。要以第一行为目标,请使用mce_buttons 钩子代替mce_buttons_2.
/**
* Removes text color button from tiny mce editor
*/
add_filter( \'mce_buttons_2\', \'remove_tiny_mce_buttons\');
function remove_tiny_mce_buttons( $buttons ) {
if ( is_admin() && !current_user_can(\'administrator\')){
$remove_buttons = array(
\'forecolor\', // text color
);
foreach ( $buttons as $button_key => $button_value ) {
if ( in_array( $button_value, $remove_buttons ) ) {
unset( $buttons[ $button_key ] );
}
}
}
return $buttons;
}
如果要删除第二行上的更多按钮(mce\\u buttons\\u 2),请将其ID添加到
$remove_buttons 大堆下面是一些第二行ID:
格式选择下划线对齐对齐前颜色粘贴文本删除格式