=== Advanced Custom Fields: Custom WYSIWYG Styles === Contributors: wdm-team Donate link: http://www.webdesign-muenchen.de/acf/ Tags: acf, tinymce Requires at least: 3.5.0 Tested up to: 4.1 Stable tag: 4.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Addition for the famous Advanced Custom Fields Plugin (ACF) to give your ACF WYSIWYG fields the possibility to be differently styled. == Description == When working with ACF (Advanced Custom Fields plugin) you often need the possibility to style different WYSIWYG fields in a different way. This plugin adds to the body-class INSIDE the iframe a css-class. With this class, you can style your tinymce-Editor individually. Example: You have a ACF WYSIWYG field with the ID "foo". Then the TinyMCE editor will have a css-class "acf_foo" in the body tag. In your tinymce.css-file now you can write special styles which should only work in this single editor. E.g. body.acf_foo { backround: #ccc; } Have fun! == Installation == 1. Upload the plugin to the `/wp-content/plugins/` directory 2. Activate the plugin through the 'Plugins' menu in WordPress == Frequently Asked Questions == = Where do I have to put the css file? = Place the css-file called "tinymce.css" in your theme directoy in the subdirectory /css/. Result: TEMPLATEDIRECTORY/css/tinymce.css = What's are the names of the added bodyclasses? = For example, if the ACF WYSIWYG field is called "supertest", then the bodyclass is "acf_supertest". In your tinymce.css file you can work with e.g. body.acf_supertest == Changelog == = 1.1 = * Performance improved = 1.0 = * Release of the plugin