Fatal Error with Gutenberg plugin v5.3.0 because of deprecated/removed function #7557
Labels
compatibility/3rd-party
Indicates a compatibility problem with a 3rd-party plugin or theme.
status/merged
Indicates when a Pull Request has been merged to a Release.
The function
gutenberg_can_edit_post_type()
from the Gutenberg plugin was deprecated with 5.1.0 and now got removed in 5.3.0 of the plugin. See: WordPress/classic-editor#87You should switch to the WP Core function
use_block_editor_for_post_type()
This effects the file
/elementor/includes/compatibility.php
, L54, as of Elementor 2.5.9:Change:
! gutenberg_can_edit_post_type( $typenow )
to:
! use_block_editor_for_post_type( $typenow )
The text was updated successfully, but these errors were encountered: