Last active
May 15, 2021 19:47
-
-
Save pavlo-bondarchuk/e47e3bddc6dc6af5bc883a6222d08084 to your computer and use it in GitHub Desktop.
set only these mce-button on specific acf wysiwyg field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( | |
| 'acf/input/admin_footer', | |
| static function () { | |
| ?> | |
| <script type="text/javascript"> | |
| (function ($) { | |
| acf | |
| .add_filter( | |
| 'wysiwyg_tinymce_settings', | |
| function (mceInit, id, field) { | |
| if (field.data && typeof field.data === 'function') { | |
| const key = field.data().key; | |
| // Accreditation | |
| if (key === 'field_609553ed26091') { | |
| mceInit.toolbar1 = 'bold,italic,link,alignleft,aligncenter,alignright'; | |
| mceInit.toolbar2 = ''; | |
| } | |
| } | |
| return mceInit; | |
| } | |
| ) | |
| ; | |
| } | |
| )(jQuery); | |
| </script> | |
| <?php | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment