Changeset 3246918
- Timestamp:
- 02/26/2025 08:28:24 AM (13 months ago)
- Location:
- supapress/trunk
- Files:
-
- 4 edited
-
composer.json (modified) (1 diff)
-
includes/filters.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
supapress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
supapress/trunk/composer.json
r3226885 r3246918 1 1 { 2 "name": "supadu/supapress", 3 "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.", 4 "type": "wordpress-plugin", 5 "version": "2.25.1", 6 "authors": [ 7 { 8 "name": "Supadu" 9 } 10 ], 11 "require": { 12 "composer/installers": "~1.0" 13 }, 14 "archive": { 15 "exclude": [ 16 "/source", 17 "package.json", 18 "package-lock.json", 19 "gulpfile.js" 20 ] 2 "name": "supadu/supapress", 3 "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.", 4 "type": "wordpress-plugin", 5 "version": "2.25.2", 6 "authors": [ 7 { 8 "name": "Supadu" 21 9 } 10 ], 11 "require": { 12 "composer/installers": "~1.0" 13 }, 14 "archive": { 15 "exclude": [ 16 "/source", 17 "package.json", 18 "package-lock.json", 19 "gulpfile.js" 20 ] 21 } 22 22 } -
supapress/trunk/includes/filters.php
r2389550 r3246918 260 260 } else { 261 261 $html = supapress_add_value_to_html_attribute( $before, 'class', 'filter-option' ); 262 $html .= "<a href=\"javascript:void(0)\" data-name=\"{$this->filter_group_name}\" data-seo=\"{$this->filter->seo_name}\">"; 262 $ariaLabel = strip_tags($this->filter->name); 263 $html .= "<a href=\"javascript:void(0)\" data-name=\"{$this->filter_group_name}\" data-seo=\"{$this->filter->seo_name}\" aria-label=\"{$ariaLabel}\">"; 263 264 $html .= __($this->filter->name, 'supapress'); 264 265 $html .= "</a>"; -
supapress/trunk/readme.txt
r3226885 r3246918 4 4 Requires at least: 6.0 5 5 Tested up to: 6.6.2 6 Stable tag: 2.25. 16 Stable tag: 2.25.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 39 39 == Changelog == 40 41 = 2.25.2 = 42 Release Date: Feb 2024 43 * Update: add aria-label on search filters 40 44 41 45 = 2.25.1 = -
supapress/trunk/supapress.php
r3226885 r3246918 7 7 * Plugin URI: https://www.supadu.com 8 8 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site. 9 * Version: 2.25. 19 * Version: 2.25.2 10 10 * Author: Supadü 11 11 * Author URI: https://www.supadu.com … … 37 37 defined( 'ABSPATH' ) or die( 'Illegal Access!' ); 38 38 39 define( 'SUPAPRESS_VERSION', '2.25. 1' );39 define( 'SUPAPRESS_VERSION', '2.25.2' ); 40 40 41 41 define( 'SUPAPRESS_SITE_URL', get_site_url() );
Note: See TracChangeset
for help on using the changeset viewer.