Version Description
(23rd July 2020) = * Bug: Fixed menu arial-label
Download this release
Release Info
Developer | expresstech |
Plugin | Responsive Menu |
Version | 3.1.30 |
Comparing to | |
See all releases |
Code changes from version 3.1.29 to 3.1.30
- config/twig.php +2 -2
- readme.txt +5 -2
- responsive-menu.php +1 -1
config/twig.php
CHANGED
@@ -27,7 +27,7 @@ if(!is_admin()):
|
|
27 |
$menu_arial_label = '';
|
28 |
foreach( get_terms('nav_menu') as $nav_menu ) {
|
29 |
if ( $nav_menu->slug === $menu ) {
|
30 |
-
$menu_arial_label =
|
31 |
break;
|
32 |
}
|
33 |
}
|
@@ -41,7 +41,7 @@ if(!is_admin()):
|
|
41 |
'depth' => $options['menu_depth'] ? $options['menu_depth'] : 0,
|
42 |
'theme_location' => $options['theme_location_menu'] ? $options['theme_location_menu'] : null,
|
43 |
'walker' => $walker,
|
44 |
-
'items_wrap' => '<ul id="%1$s" role="menubar" "'. $menu_arial_label .'" >%3$s</ul>',
|
45 |
'echo' => false
|
46 |
]
|
47 |
);
|
27 |
$menu_arial_label = '';
|
28 |
foreach( get_terms('nav_menu') as $nav_menu ) {
|
29 |
if ( $nav_menu->slug === $menu ) {
|
30 |
+
$menu_arial_label = $menu;
|
31 |
break;
|
32 |
}
|
33 |
}
|
41 |
'depth' => $options['menu_depth'] ? $options['menu_depth'] : 0,
|
42 |
'theme_location' => $options['theme_location_menu'] ? $options['theme_location_menu'] : null,
|
43 |
'walker' => $walker,
|
44 |
+
'items_wrap' => '<ul id="%1$s" role="menubar" aria-label="'. $menu_arial_label .'" >%3$s</ul>',
|
45 |
'echo' => false
|
46 |
]
|
47 |
);
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: expresstech,responsivemenu
|
3 |
Tags: responsive, mega menu, navigation, mobile, hamburger
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 3.1.
|
7 |
Requires PHP: 5.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -111,6 +111,9 @@ To view our FAQ, please go to [https://responsive.menu/faq/](https://responsive.
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
114 |
= 3.1.29 (4th May 2020) =
|
115 |
* Bug: Fix Menu import functionality when menu names do not match
|
116 |
|
2 |
Contributors: expresstech,responsivemenu
|
3 |
Tags: responsive, mega menu, navigation, mobile, hamburger
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 5.5
|
6 |
+
Stable tag: 3.1.30
|
7 |
Requires PHP: 5.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= 3.1.30 (23rd July 2020) =
|
115 |
+
* Bug: Fixed menu arial-label
|
116 |
+
|
117 |
= 3.1.29 (4th May 2020) =
|
118 |
* Bug: Fix Menu import functionality when menu names do not match
|
119 |
|
responsive-menu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Responsive Menu
|
5 |
Plugin URI: https://expresstech.io
|
6 |
Description: Highly Customisable Responsive Menu Plugin for WordPress
|
7 |
-
Version: 3.1.
|
8 |
Author: ExpressTech
|
9 |
Text Domain: responsive-menu
|
10 |
Author URI: https://responsive.menu
|
4 |
Plugin Name: Responsive Menu
|
5 |
Plugin URI: https://expresstech.io
|
6 |
Description: Highly Customisable Responsive Menu Plugin for WordPress
|
7 |
+
Version: 3.1.30
|
8 |
Author: ExpressTech
|
9 |
Text Domain: responsive-menu
|
10 |
Author URI: https://responsive.menu
|