Changeset 3073721
- Timestamp:
- 04/19/2024 10:28:47 AM (22 months ago)
- Location:
- taxonomy-filter/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
taxonomy-filter-bulks.php (modified) (1 diff)
-
taxonomy-filter-constants.php (modified) (1 diff)
-
taxonomy-filter.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
taxonomy-filter/trunk/readme.txt
r3032071 r3073721 4 4 Requires at least: 4.0 5 5 Tested up to: 5.9 6 Stable tag: 2.2.1 06 Stable tag: 2.2.11 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl.html … … 78 78 == Changelog == 79 79 80 = 2.2.11 - 2024-04-19 = 81 * Added hidden option check for avoid warnings 82 80 83 = 2.2.10 - 2024-02-06 = 81 84 * Added nonce management on settings page -
taxonomy-filter/trunk/taxonomy-filter-bulks.php
r2040735 r3073721 53 53 // Get hidden taxonomies 54 54 $options = get_option( TFP_OPTIONS ); 55 $hidden_taxonomies = $options->hidden;55 $hidden_taxonomies = ( isset( $options->hidden ) && ! empty( $options->hidden ) ) ? $options->hidden : null; 56 56 if ( empty( $hidden_taxonomies ) ) $hidden_taxonomies = array(); 57 57 -
taxonomy-filter/trunk/taxonomy-filter-constants.php
r3032071 r3073721 4 4 ***************************************************/ 5 5 6 define( 'TFP_VERSION', '2.2.1 0' );6 define( 'TFP_VERSION', '2.2.11' ); 7 7 define( 'TFP_PREFIX', 'taxonomy_filter' ); 8 8 define( 'TFP_OPTIONS', 'taxonomy_filter' ); -
taxonomy-filter/trunk/taxonomy-filter.php
r3032071 r3073721 7 7 Text Domain: taxonomy_filter 8 8 Domain Path: /languages/ 9 Version: 2.2.1 09 Version: 2.2.11 10 10 License: GPL v3 11 11
Note: See TracChangeset
for help on using the changeset viewer.