Update WordPress Posts Bulk Editor Professional v.2.0.8
- list of small fixes
- new hook wpbe_settings_key_options, allows to make the options the same for all users
add_filter('wpbe_settings_key_options', function ($id) { return 'for_all'; });
- new hook wpbe_wrap_field_val, allows to customize column cell content, the same as for BEAR described
- new hook wpbe_use_kses_for_page_field – allows to avoid to “updates character in stead of the symbol” if to send false there
- new hook wpbe_storage_type – allows to set filter storage if filter doesn work
add_filter('wpbe_storage_type', function ($id) { return 'session'; });
- new hook wpbe_show_taxonomy_filter – allows to hide from filter taxonomies
add_filter('wpbe_show_taxonomy_filter', function ($show, $t) { if ('category' === $t->name) { $show = false; } return $show; }, 10, 2);
- to filter added “search by empty TEXT meta fields”
- randomizer for numeric meta fields