WP 5.8 deprecated block_categories filter
-
Hello, I’m testing the RC3 for WordPress 5.8, and I noticed a warning:
Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead.
WP 5.8 is due to be released in a week, so it would be good to fix this up. Looks like this warning comes from
class-ultimate-blocks-category.php:42
You can simply change this:
add_filter( 'block_categories', array( $this, 'block_categories' ) );
To this:
add_filter( 'block_categories_all', array( $this, 'block_categories' ) );
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘WP 5.8 deprecated block_categories filter’ is closed to new replies.