Skip to content

Instantly share code, notes, and snippets.

@Soullighter
Created September 13, 2023 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Soullighter/15c7fd3a48f6f4af39c042ab6a136908 to your computer and use it in GitHub Desktop.
Save Soullighter/15c7fd3a48f6f4af39c042ab6a136908 to your computer and use it in GitHub Desktop.
ACF WYSIWYG Editor add underline option
##-- ACF WYSIWYG Editor add underline option
add_filter( 'acf/fields/wysiwyg/toolbars', 'my_toolbars' );
function my_toolbars( $toolbars ) {
$toolbars['Full'][1][3] = 'underline';
return $toolbars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment