Tribe__Editor::is_classic_plugin_active()
classic_editor_replace is function that is created by the plugin:
See also
- https://wordpress.org/plugins/classic-editor/: prior 1.3 version the classic editor plugin was bundle inside of a unique function:
classic_editor_replacenow all is bundled inside of a classClassic_Editor
Return
(bool)
Source
File: src/Tribe/Editor.php
public function is_classic_plugin_active() {
return function_exists( 'classic_editor_replace' ) || class_exists( 'Classic_Editor' );
}
Changelog
| Version | Description |
|---|---|
| 4.8 | Introduced. |