Version Description
- Fixed tested version number.
- Added screenshot 2.
- Added options page screenshot.
- Now plugin allows you to rename the home link.
Download this release
Release Info
Developer | mattsay |
Plugin | Dropdown Menu Widget |
Version | 1.5.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.1 to 1.5.2
- readme.txt +13 -8
- screenshot-1.jpg +0 -0
- screenshot-1.png +0 -0
- screenshot-2.jpg +0 -0
- screenshot-2.png +0 -0
- screenshot-3.jpg +0 -0
- shailan.DropDownMenu.php +3 -3
readme.txt
CHANGED
@@ -3,14 +3,15 @@ Contributors: mattsay
|
|
3 |
Donate link: http://shailan.com/donate
|
4 |
Tags: css, dropdown, menu, widget, pages, categories, multi
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.5.
|
8 |
|
9 |
-
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
Dropdown Menu widget adds a beautiful, CSS only dropdown menu, listing pages
|
|
|
14 |
|
15 |
== Installation ==
|
16 |
|
@@ -36,18 +37,22 @@ Plugin comes with various themes already installed. If you want something differ
|
|
36 |
|
37 |
= I found a bug! Where do i submit it? =
|
38 |
|
39 |
-
You can submit errors and bugs using the [online form](http://shailan.com/contact) on my site.
|
40 |
|
41 |
== Screenshots ==
|
42 |
|
43 |
1. A preview of the widget in action
|
44 |
1. Shiny Black menu theme
|
45 |
-
1.
|
46 |
-
1. Dropdown menu settings page
|
47 |
-
1. New exclude pages metabox
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
= 1.5.1 =
|
52 |
* Removed custom walker support for now.
|
53 |
* Removed blue tabs theme since it was using custom walkers.
|
3 |
Donate link: http://shailan.com/donate
|
4 |
Tags: css, dropdown, menu, widget, pages, categories, multi
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 3.0
|
7 |
+
Stable tag: 1.5.2
|
8 |
|
9 |
+
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of Pages, Categories or Custom navigation menus of your blog.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
Dropdown Menu widget adds a beautiful, CSS only dropdown menu, listing pages, categories of your blog. You can also turn your wordpress navigation menu into a beatiful dropdown menu using this plugin.
|
14 |
+
It allows you to chose vertical or horizontal layout. It supports multiple instances. You can select a theme for your widget from the Dropdown Menu Settings page. If you don't like ready-made templates you can create your own theme for the menus using CSS. If you want a custom dropdown theme you can [request ](http://shailan.com/contact) one. Please visit [plugin site](http://shailan.com/wordpress/plugins/dropdown-menu) for more information.
|
15 |
|
16 |
== Installation ==
|
17 |
|
37 |
|
38 |
= I found a bug! Where do i submit it? =
|
39 |
|
40 |
+
You can submit errors and bugs using the [online form](http://shailan.com/contact) on my site OR you can submit via [wordpress support tags here](http://wordpress.org/tags/dropdown-menu-widget).
|
41 |
|
42 |
== Screenshots ==
|
43 |
|
44 |
1. A preview of the widget in action
|
45 |
1. Shiny Black menu theme
|
46 |
+
1. Brand new dropdown menu options page.
|
|
|
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.5.2 =
|
51 |
+
* Fixed tested version number.
|
52 |
+
* Added screenshot 2.
|
53 |
+
* Added options page screenshot.
|
54 |
+
* Now plugin allows you to rename the home link.
|
55 |
+
|
56 |
= 1.5.1 =
|
57 |
* Removed custom walker support for now.
|
58 |
* Removed blue tabs theme since it was using custom walkers.
|
screenshot-1.jpg
ADDED
Binary file
|
screenshot-1.png
DELETED
Binary file
|
screenshot-2.jpg
ADDED
Binary file
|
screenshot-2.png
DELETED
Binary file
|
screenshot-3.jpg
ADDED
Binary file
|
shailan.DropDownMenu.php
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
/*
|
3 |
Plugin Name: Dropdown Menu Widget
|
4 |
Plugin URI: http://shailan.com/wordpress/plugins/dropdown-menu
|
5 |
-
Description: A multi widget to generate drop-down menus from your pages
|
6 |
-
Version: 1.5.
|
7 |
Author: Matt Say
|
8 |
Author URI: http://shailan.com
|
9 |
Text Domain: shailan-dropdown-menu
|
10 |
*/
|
11 |
|
12 |
-
define('SHAILAN_DM_VERSION','1.5.
|
13 |
define('SHAILAN_DM_TITLE', 'Dropdown Menu');
|
14 |
define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
|
15 |
|
2 |
/*
|
3 |
Plugin Name: Dropdown Menu Widget
|
4 |
Plugin URI: http://shailan.com/wordpress/plugins/dropdown-menu
|
5 |
+
Description: A multi widget to generate drop-down menus from your pages, categories & navigation menus. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
|
6 |
+
Version: 1.5.2
|
7 |
Author: Matt Say
|
8 |
Author URI: http://shailan.com
|
9 |
Text Domain: shailan-dropdown-menu
|
10 |
*/
|
11 |
|
12 |
+
define('SHAILAN_DM_VERSION','1.5.2');
|
13 |
define('SHAILAN_DM_TITLE', 'Dropdown Menu');
|
14 |
define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
|
15 |
|