wpce_editor_setup v1.0
Fires after a WPCE instance has been initialized in the backend.
WARNING
This hook does not fire directly after the instance is created, but as part of the admin_init hook.
Parameters
WPCE $wpceThe
WPCEinstance.
Example
php
add_action('wpce_editor_setup', function (WPCE $wpce) {
// ...
});