madalinungureanu / user-profile-picture

WordPress User Profile Picture
GNU General Public License v2.0
15 stars 7 forks source link

Fix deprecation warning in WordPress 5.8.2 #37

Closed Dathix closed 9 months ago

HELMAB commented 1 year ago

PR is useful, but should we can check conditions for only WordPress 5.8 up? like so

global $wp_version;
if ( version_compare ( $wp_version, '5.8', '>=' ) )  {
    add_filter( 'block_categories_all', array( $this, 'add_block_category' ), 10, 2 );
} else {
    add_filter( 'block_categories', array( $this, 'add_block_category' ), 10, 2 );
}
madalinungureanu commented 9 months ago

Commited directly on the dev branch, thank you for your pull request. Will close it