Skip to content

Instantly share code, notes, and snippets.

@mishterk
Last active April 19, 2024 02:08
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mishterk/6bfc12d9d2b5f4581680a671dbb918b1 to your computer and use it in GitHub Desktop.
Save mishterk/6bfc12d9d2b5f4581680a671dbb918b1 to your computer and use it in GitHub Desktop.
Register custom WYSIWYG field toolbar options with Advanced Custom Fields for WordPress (ACF).
<?php
add_filter( 'acf/fields/wysiwyg/toolbars', function ( $toolbars ) {
$toolbars['Bare'] = [];
$toolbars['Bare'][1] = [ 'forecolor', 'link', 'strikethrough', 'bold', 'italic' ];
return $toolbars;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment