@mmcginnis Here’s the filter and how you can use it : https://gist.github.com/phpbits/499a251e5a07e120ef784d8c9e993430 . Let me know how it goes. Thanks!
Not getting any love on this either – I’m adding the filter in the functions.php of my theme, but it’s never called.
I was wondering if the function was being registered too late, so I tried to examine the plugin source itself, to establish when the apply_filter() was being called, but I couldn’t see where the parent filter (added in the constructor for EditorsKit_Custom_CSS_Classes was being called either, ie:
add_filter( 'block_editor_settings', array( $this, 'block_editor_settings' ), 10, 2 );
I’ve read the blog post, and tried your example too, as well as my own code.
https://jeffreycarandang.com/introducing-editorskit-block-styling-utility-classes/
Jeffrey – meant to say thanks! The function in that gist worked for me.
@mmcginnis You are very welcome 🙂 Let me know if you have any other concerns. Thanks a lot!
@phpbits my bad, a trailing space in the filter name was all it was. Thanks for trying to help me out.