Changeset 3075575
- Timestamp:
- 04/23/2024 09:31:40 AM (22 months ago)
- Location:
- taxonomy-filter/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
taxonomy-filter-constants.php (modified) (1 diff)
-
taxonomy-filter-settings.php (modified) (1 diff)
-
taxonomy-filter.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
taxonomy-filter/trunk/readme.txt
r3073721 r3075575 3 3 Tags: usability, filter, admin, category, tag, term, taxonomy, hierarchy, organize, manage 4 4 Requires at least: 4.0 5 Tested up to: 5.96 Stable tag: 2.2.1 15 Tested up to: 6.5.2 6 Stable tag: 2.2.12 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl.html … … 78 78 == Changelog == 79 79 80 = 2.2.12 - 2024-04-23 = 81 * Added taxonomy rewrite field check for avoid warnings 82 80 83 = 2.2.11 - 2024-04-19 = 81 84 * Added hidden option check for avoid warnings -
taxonomy-filter/trunk/taxonomy-filter-constants.php
r3073721 r3075575 4 4 ***************************************************/ 5 5 6 define( 'TFP_VERSION', '2.2.1 1' );6 define( 'TFP_VERSION', '2.2.12' ); 7 7 define( 'TFP_PREFIX', 'taxonomy_filter' ); 8 8 define( 'TFP_OPTIONS', 'taxonomy_filter' ); -
taxonomy-filter/trunk/taxonomy-filter-settings.php
r3032071 r3075575 124 124 foreach ( $taxonomies as $taxonomy ) { 125 125 // Retrieve current taxonomy data 126 $slug = $taxonomy->rewrite[ 'slug' ];126 $slug = is_bool( $taxonomy->rewrite ) || empty( $taxonomy->rewrite[ 'slug' ] ) ? '': $taxonomy->rewrite[ 'slug' ]; 127 127 $name = $taxonomy->name; 128 128 -
taxonomy-filter/trunk/taxonomy-filter.php
r3073721 r3075575 7 7 Text Domain: taxonomy_filter 8 8 Domain Path: /languages/ 9 Version: 2.2.1 19 Version: 2.2.12 10 10 License: GPL v3 11 11
Note: See TracChangeset
for help on using the changeset viewer.