如何向ACF WYSIWYG编辑器添加按钮(例如“文本颜色”按钮)。 我尝试了这段代码,但它不起作用:(
add_filter( 'acf/fields/wysiwyg/toolbars' , 'dw_add_buttons_to_acf_wysiwyg_editor' );
function dw_add_buttons_to_acf_wysiwyg_editor( $toolbars ){
$toolbars['Full'][2][] = 'forecolor';
return $toolbars;
}