WOLF - WordPress Posts Bulk Editor and Manager Professional

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;
         [...]

Update WordPress Posts Bulk Editor Professional v.2.0.4

  • small fixes
  • added counter of selected posts
  • added filter by thumbnails (empty/not empty) in tab Filters
  • meta fields math operations field in tab ‘Bulk Edit‘
  • new hook wpbe_users_args for function WPBE_HELPER::get_users() which allows to control custom user access
  • new hook wpbe_new_post_status – allows to set what post status should be after creating new post. 2 arguments: post status and post type
  • new feature in tab Settings ‘Show content and excerpt text partly‘ . Show part of the text in the content and excerpt edit button
  • new feature ‘Separate columns and meta for post types‘. Each post type has its own set of columns and meta fields.
  • new hook wpbe_post_type_args –  allows to take not only public post types
    [...]

Update WordPress Posts Bulk Editor Professional 2.0.2

  • Fixes
  • Quick search by meta key and its title on the same time added on tab “Meta”
  • Added possibility to use fields of the quick search on tools panel by text meta keys, example: test_meta_1:TestM Title
[...]