Version Description
- Fix for search highlight being to big
Download this release
Release Info
| Developer | eskapism |
| Plugin | |
| Version | 2.5 |
| Comparing to | |
| See all releases | |
Code changes from version 2.4 to 2.5
- css/styles.css +5 -3
- index.php +2 -2
- readme.txt +19 -8
css/styles.css
CHANGED
|
@@ -311,23 +311,25 @@ span.admin-menu-tree-page-tree_headline {
|
|
| 311 |
ul.admin-menu-tree-page-tree .highlight {
|
| 312 |
background-color: #fff879;
|
| 313 |
color: #21759B;
|
|
|
|
|
|
|
| 314 |
}
|
| 315 |
|
| 316 |
|
| 317 |
ul.admin-menu-tree-page-tree .admin-menu-tree-page-expand {
|
| 318 |
display: block;
|
| 319 |
position: absolute;
|
| 320 |
-
left:
|
| 321 |
top: 1px;
|
| 322 |
width: 17px;
|
| 323 |
height: 14px;
|
| 324 |
}
|
| 325 |
ul.admin-menu-tree-page-tree ul .admin-menu-tree-page-expand {
|
| 326 |
-
top:
|
| 327 |
left: 9px;
|
| 328 |
}
|
| 329 |
ul.admin-menu-tree-page-tree ul ul .admin-menu-tree-page-expand {
|
| 330 |
-
top:
|
| 331 |
left: 17px;
|
| 332 |
}
|
| 333 |
ul.admin-menu-tree-page-tree ul ul ul .admin-menu-tree-page-expand {
|
| 311 |
ul.admin-menu-tree-page-tree .highlight {
|
| 312 |
background-color: #fff879;
|
| 313 |
color: #21759B;
|
| 314 |
+
margin: 0;
|
| 315 |
+
padding: 0;
|
| 316 |
}
|
| 317 |
|
| 318 |
|
| 319 |
ul.admin-menu-tree-page-tree .admin-menu-tree-page-expand {
|
| 320 |
display: block;
|
| 321 |
position: absolute;
|
| 322 |
+
left: 0;
|
| 323 |
top: 1px;
|
| 324 |
width: 17px;
|
| 325 |
height: 14px;
|
| 326 |
}
|
| 327 |
ul.admin-menu-tree-page-tree ul .admin-menu-tree-page-expand {
|
| 328 |
+
top: 0;
|
| 329 |
left: 9px;
|
| 330 |
}
|
| 331 |
ul.admin-menu-tree-page-tree ul ul .admin-menu-tree-page-expand {
|
| 332 |
+
top: 0;
|
| 333 |
left: 17px;
|
| 334 |
}
|
| 335 |
ul.admin-menu-tree-page-tree ul ul ul .admin-menu-tree-page-expand {
|
index.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Admin Menu Tree Page View
|
| 4 |
Plugin URI: http://eskapism.se/code-playground/admin-menu-tree-page-view/
|
| 5 |
Description: Get a tree view of all your pages directly in the admin menu. Search, edit, view and add pages - all with just one click away!
|
| 6 |
-
Version: 2.
|
| 7 |
Author: Pär Thernström
|
| 8 |
Author URI: http://eskapism.se/
|
| 9 |
License: GPL2
|
|
@@ -38,7 +38,7 @@ add_action('wp_ajax_admin_menu_tree_page_view_move_page', 'admin_menu_tree_page_
|
|
| 38 |
|
| 39 |
function admin_menu_tree_page_view_admin_init() {
|
| 40 |
|
| 41 |
-
define( "admin_menu_tree_page_view_VERSION", "2.
|
| 42 |
define( "admin_menu_tree_page_view_URL", WP_PLUGIN_URL . '/admin-menu-tree-page-view/' );
|
| 43 |
define( "admin_menu_tree_page_view_DIR", WP_PLUGIN_DIR . '/admin-menu-tree-page-view/' );
|
| 44 |
|
| 3 |
Plugin Name: Admin Menu Tree Page View
|
| 4 |
Plugin URI: http://eskapism.se/code-playground/admin-menu-tree-page-view/
|
| 5 |
Description: Get a tree view of all your pages directly in the admin menu. Search, edit, view and add pages - all with just one click away!
|
| 6 |
+
Version: 2.5
|
| 7 |
Author: Pär Thernström
|
| 8 |
Author URI: http://eskapism.se/
|
| 9 |
License: GPL2
|
| 38 |
|
| 39 |
function admin_menu_tree_page_view_admin_init() {
|
| 40 |
|
| 41 |
+
define( "admin_menu_tree_page_view_VERSION", "2.5" );
|
| 42 |
define( "admin_menu_tree_page_view_URL", WP_PLUGIN_URL . '/admin-menu-tree-page-view/' );
|
| 43 |
define( "admin_menu_tree_page_view_DIR", WP_PLUGIN_DIR . '/admin-menu-tree-page-view/' );
|
| 44 |
|
readme.txt
CHANGED
|
@@ -1,20 +1,28 @@
|
|
| 1 |
=== Admin Menu Tree Page View ===
|
| 2 |
Contributors: eskapism, MarsApril
|
| 3 |
Donate link: http://eskapism.se/sida/donate/
|
| 4 |
-
Tags: admin, page, pages, tree, view, admin menu, menu
|
| 5 |
Requires at least: 3.0
|
| 6 |
-
Tested up to: 3.
|
| 7 |
-
Stable tag: 2.
|
| 8 |
|
| 9 |
-
Get a tree view of all your pages directly in the admin menu. Search, edit, view, re-order/sort and add pages
|
| 10 |
|
| 11 |
== Description ==
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
Works perfect in CMS-like WordPress installations with lots of pages in a tree hierarchy.
|
| 20 |
|
|
@@ -42,6 +50,9 @@ Now the tree with the pages will be visible in the admin menu to the left.
|
|
| 42 |
|
| 43 |
== Changelog ==
|
| 44 |
|
|
|
|
|
|
|
|
|
|
| 45 |
= 2.4 =
|
| 46 |
- Fix for flyout menu not working
|
| 47 |
|
| 1 |
=== Admin Menu Tree Page View ===
|
| 2 |
Contributors: eskapism, MarsApril
|
| 3 |
Donate link: http://eskapism.se/sida/donate/
|
| 4 |
+
Tags: admin, page, pages, page tree, hierarchy, cms, tree, view, admin menu, menu, change order, drag and drop
|
| 5 |
Requires at least: 3.0
|
| 6 |
+
Tested up to: 3.5
|
| 7 |
+
Stable tag: 2.5
|
| 8 |
|
| 9 |
+
Get a tree view of all your pages directly in the admin menu. Search, edit, view, re-order/sort and add pages – all is just one click away!
|
| 10 |
|
| 11 |
== Description ==
|
| 12 |
|
| 13 |
+
The Admin Menu Tree Page View WordPress plugin adds a page tree to all your pages – directly accessible in the admin menu.
|
| 14 |
+
This way all your pages will be available within just one click,
|
| 15 |
+
no matter where you are in the admin area.
|
| 16 |
|
| 17 |
+
You can also add pages directly in the tree and you can quickly find your pages by using the search box.
|
| 18 |
+
|
| 19 |
+
#### Top features
|
| 20 |
+
* Change the order of your pages with drag-and-drop
|
| 21 |
+
* View all your pages – no matter where in the admin you are
|
| 22 |
+
* View the page hierarchy/the tree structure of your pages
|
| 23 |
+
* Compatible with WPML, so if you in WPML's language menu have selected to view german pages, then only the german pages will vi visible in the admin menu tree too.
|
| 24 |
+
* Add pages directly after or inside another post – no need to first create the post and then select the parent of the page
|
| 25 |
+
* Adds link to view a page directly from the admin menu – you don't have to first edit the post and from that page click the view link
|
| 26 |
|
| 27 |
Works perfect in CMS-like WordPress installations with lots of pages in a tree hierarchy.
|
| 28 |
|
| 50 |
|
| 51 |
== Changelog ==
|
| 52 |
|
| 53 |
+
= 2.5 =
|
| 54 |
+
- Fix for search highlight being to big
|
| 55 |
+
|
| 56 |
= 2.4 =
|
| 57 |
- Fix for flyout menu not working
|
| 58 |
|
