Version Description
- Added 'aria-label' and 'title' attributes to slide links to improve accessibility.
Download this release
Release Info
Developer | simonpedge |
Plugin | Slide Anything – Responsive Content / HTML Slider and Carousel |
Version | 2.3.38 |
Comparing to | |
See all releases |
Code changes from version 2.3.37 to 2.3.38
- php/slide-anything-frontend.php +3 -1
- readme.txt +7 -1
- slide-anything.php +1 -1
php/slide-anything-frontend.php
CHANGED
@@ -667,8 +667,10 @@ function slide_anything_shortcode($atts) {
|
|
667 |
// BUILD SLIDE LINK HOVER BUTTON
|
668 |
$link_output = '';
|
669 |
if ($slide_data["slide".$i."_link_url"] != '') {
|
|
|
670 |
$link_output = "<a class='sa_slide_link_icon' href='".$slide_data["slide".$i."_link_url"]."' ";
|
671 |
-
$link_output .= "target='".$slide_data["slide".$i."_link_target"]."'
|
|
|
672 |
}
|
673 |
|
674 |
// BUILD POPUP HOVER BUTTON - PRO VERSION ONLY!
|
667 |
// BUILD SLIDE LINK HOVER BUTTON
|
668 |
$link_output = '';
|
669 |
if ($slide_data["slide".$i."_link_url"] != '') {
|
670 |
+
$link_title = "slide ".$slide_data["slide".$i."_num"]." link";
|
671 |
$link_output = "<a class='sa_slide_link_icon' href='".$slide_data["slide".$i."_link_url"]."' ";
|
672 |
+
$link_output .= "target='".$slide_data["slide".$i."_link_target"]."' ";
|
673 |
+
$link_output .= "title='".$link_title."' aria-label='".$link_title."'></a>";
|
674 |
}
|
675 |
|
676 |
// BUILD POPUP HOVER BUTTON - PRO VERSION ONLY!
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: simonpedge
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RP7JLGK6VT252
|
4 |
Tags: slider, carousel, content slider, responsive slider, html slider, owl carousel
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 5.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -98,6 +98,9 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
|
|
98 |
|
99 |
== Changelog ==
|
100 |
|
|
|
|
|
|
|
101 |
= 2.3.37 =
|
102 |
* Added a new feature 'Mousewheel Navigation' which allows previous/next slide navigation using the mousewheel. Removed the 'Lazy Load Images' feature, as this is now included in the standard WordPress installation.
|
103 |
|
@@ -716,3 +719,6 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
|
|
716 |
|
717 |
= 2.3.37 =
|
718 |
* Added a new feature 'Mousewheel Navigation' which allows previous/next slide navigation using the mousewheel. Removed the 'Lazy Load Images' feature, as this is now included in the standard WordPress installation.
|
|
|
|
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RP7JLGK6VT252
|
4 |
Tags: slider, carousel, content slider, responsive slider, html slider, owl carousel
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 5.8
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
98 |
|
99 |
== Changelog ==
|
100 |
|
101 |
+
= 2.3.38 =
|
102 |
+
* Added 'aria-label' and 'title' attributes to slide links to improve accessibility.
|
103 |
+
|
104 |
= 2.3.37 =
|
105 |
* Added a new feature 'Mousewheel Navigation' which allows previous/next slide navigation using the mousewheel. Removed the 'Lazy Load Images' feature, as this is now included in the standard WordPress installation.
|
106 |
|
719 |
|
720 |
= 2.3.37 =
|
721 |
* Added a new feature 'Mousewheel Navigation' which allows previous/next slide navigation using the mousewheel. Removed the 'Lazy Load Images' feature, as this is now included in the standard WordPress installation.
|
722 |
+
|
723 |
+
= 2.3.38 =
|
724 |
+
* Added 'aria-label' and 'title' attributes to slide links to improve accessibility.
|
slide-anything.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://wordpress.org/plugins/slide-anything/
|
5 |
* Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
|
6 |
* Author: Simon Edge
|
7 |
-
* Version: 2.3.
|
8 |
* License: GPLv2 or later
|
9 |
*/
|
10 |
|
4 |
* Plugin URI: https://wordpress.org/plugins/slide-anything/
|
5 |
* Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
|
6 |
* Author: Simon Edge
|
7 |
+
* Version: 2.3.38
|
8 |
* License: GPLv2 or later
|
9 |
*/
|
10 |
|