Code snippet for ACF WYSIWYG button support
-
Hello,
Thanks for the great plugin. Here is a small snippet to add the Insert Pages button into an ACF WYSIWYG:
//--------------------------------------------------------------- // ADD INSERT PAGES BUTTON INTO ACF WYSIWYG //--------------------------------------------------------------- if (class_exists('ACF')) { add_filter('acf/fields/wysiwyg/toolbars', 'insert_acf_button'); function insert_acf_button($toolbars) { $toolbars['Full'][1][] = 'wpInsertPages_button'; return $toolbars; } }
Although this works from functions.php it would be great to include in the plugin for a future release.
Cheers,
J ??
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Code snippet for ACF WYSIWYG button support’ is closed to new replies.