問題
ACFのWysiwyg エディタでtinymce templatesのボタンを表示させたい。
解決策
「メディアアップロードボタン」をONにした上で、「tinymce_templates_enable_media_buttons」をフックして、「true」を返す。
tinymce templatesのボタンを表示させたい。
tinymce templatesのボタンはそのままだとACFのWysiwyg エディタには表示されません。
そのため、ACFのWysiwyg エディタでtinymce templatesのボタンを表示する方法をご紹介します。
「wp_unique_post_slug」をフックして、スラッグを変更する。
「メディアアップロードボタン」をONにします。
その上で「tinymce_templates_enable_media_buttons」をフックして、「true」を返す。
add_filter('tinymce_templates_enable_media_buttons', function(){
return true;
} );
参照
【TinyMCE TemplatesをAdvanced Custom Fieldsで使用する | lg】
https://lg.wszz.org/tinymce_templates2advanced_custom_fields/
コメント