We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56e2a0 commit 5ed57a4Copy full SHA for 5ed57a4
1 file changed
includes/admin/class-rop-admin.php
@@ -762,6 +762,11 @@ public function publish_now_upsell() {
762
* @since 8.0.0
763
*/
764
public static function is_classic_editor() {
765
+ if ( isset( $_GET['wpb-backend-editor'] ) ) {
766
+ // If the wpb-backend-editor is set, we are using the classic editor via WPBakery.
767
+ return true;
768
+ }
769
+
770
if ( ! class_exists( 'Classic_Editor' ) ) {
771
return false;
772
}
0 commit comments