如何向ACF微型MCE编辑器添加按钮

时间:2014-12-13 18:42:13

标签: wordpress tinymce advanced-custom-fields

如何向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;
}

0 个答案:

没有答案