Version Description
- Fixed "Home" link bug for the template tag. Thanks to Jeff.
Download this release
Release Info
Developer | mattsay |
Plugin | Dropdown Menu Widget |
Version | 1.2.8 |
Comparing to | |
See all releases |
Code changes from version 1.2.7 to 1.2.8
- readme.txt +4 -1
- shailan.DropDownMenu.php +3 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://shailan.com/donate
|
|
4 |
Tags: css, dropdown, menu, widget, pages, categories
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 2.9
|
7 |
-
Stable tag: 1.2.
|
8 |
|
9 |
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of pages OR categories of your blog.
|
10 |
|
@@ -47,6 +47,9 @@ You can submit errors and bugs using the [online form](http://shailan.com/contac
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.2.7 =
|
51 |
* Added "include homepage link" for both pages and categories now. You can enable/disable this link from the widget options easily.
|
52 |
|
4 |
Tags: css, dropdown, menu, widget, pages, categories
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 2.9
|
7 |
+
Stable tag: 1.2.8
|
8 |
|
9 |
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of pages OR categories of your blog.
|
10 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.2.8 =
|
51 |
+
* Fixed "Home" link bug for the template tag. Thanks to Jeff.
|
52 |
+
|
53 |
= 1.2.7 =
|
54 |
* Added "include homepage link" for both pages and categories now. You can enable/disable this link from the widget options easily.
|
55 |
|
shailan.DropDownMenu.php
CHANGED
@@ -357,6 +357,7 @@ function shailan_dropdown_menu(){
|
|
357 |
$login = (bool) get_option('shailan_dm_login');
|
358 |
$admin = (bool) get_option('shailan_dm_admin');
|
359 |
$vertical = (bool) get_option('shailan_dm_vertical');
|
|
|
360 |
|
361 |
$args = array(
|
362 |
'type' => $type,
|
@@ -364,7 +365,8 @@ function shailan_dropdown_menu(){
|
|
364 |
'style' => $inline_style,
|
365 |
'login' => $login,
|
366 |
'admin' => $admin,
|
367 |
-
'vertical' => $vertical
|
|
|
368 |
);
|
369 |
|
370 |
the_widget('shailan_DropdownWidget', $args);
|
357 |
$login = (bool) get_option('shailan_dm_login');
|
358 |
$admin = (bool) get_option('shailan_dm_admin');
|
359 |
$vertical = (bool) get_option('shailan_dm_vertical');
|
360 |
+
$home = (bool) get_option('shailan_dm_home');
|
361 |
|
362 |
$args = array(
|
363 |
'type' => $type,
|
365 |
'style' => $inline_style,
|
366 |
'login' => $login,
|
367 |
'admin' => $admin,
|
368 |
+
'vertical' => $vertical,
|
369 |
+
'home' => $home
|
370 |
);
|
371 |
|
372 |
the_widget('shailan_DropdownWidget', $args);
|