WOLF - WordPress Posts Bulk Editor and Manager Professional

More settings (implicit)

Hidden options (from v.2.0.8/1.0.8) due to the complexity of their understanding, rare use, technical requirements, more flexibility by code, etc. :

  • 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';
    });
  • Hook wpbe_wrap_field_val, allows to customize column cell content, the same as for BEAR described
  • Hook wpbe_use_kses_for_page_field – allows to avoid to “updates character in stead of the symbol” if to send false there
  • Hook wpbe_storage_type – allows to set filter storage if filter doesn work
    add_filter('wpbe_storage_type', function ($id) {
        return 'session';
    });
  • 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);