Skip to content

Instantly share code, notes, and snippets.

@hatsumatsu
Created August 23, 2018 09:58
Show Gist options
  • Save hatsumatsu/ac644066ae20a210feb2ec435708a76a to your computer and use it in GitHub Desktop.
Save hatsumatsu/ac644066ae20a210feb2ec435708a76a to your computer and use it in GitHub Desktop.
<?php
/**
* Modify ACF's WYSIWYG field toolbar
* @param array $toolbars toolbars
* @return array toolbars
*/
function modify_acf_editor_toolbars( $toolbars ) {
$toolbars['Minimal' ] = array();
$toolbars['Minimal' ][1] = array(
'link',
'unlink',
'removeformat'
);
return $toolbars;
}
add_filter( 'acf/fields/wysiwyg/toolbars' , 'modify_acf_editor_toolbars' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment