pootlepress / caxton

Gutenberg pro
GNU General Public License v2.0
24 stars 6 forks source link

block_categories is deprecated use block_categories_all #195

Open bobbingwide opened 2 years ago

bobbingwide commented 2 years ago

When invoking the block editor with Caxton v1.27.0 the following message appears twice.

Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead.

This is due to the block_categories filter being used in caxton-main.php. In the Caxton::_admin() method line 85 is

add_action( 'block_categories', array( $this->admin, 'block_categories' ), 5 );

Changing this to

add_action( 'block_categories_all', array( $this->admin, 'block_categories' ), 5 );

prevents the deprecated messages from appearing