Version Description
- Added:Now you can order posts with drag and drop. Just click and hold mouse button and move post up/down. But please note that you can only move posts that have the same level/depth in the tree.
Download this release
Release Info
Developer | eskapism |
Plugin | Admin Menu Tree Page View |
Version | 2.0 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 2.0
- index.php +2 -2
- readme.txt +5 -3
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:
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
@@ -33,7 +33,7 @@ add_action('wp_ajax_admin_menu_tree_page_view_move_page', 'admin_menu_tree_page_
|
|
33 |
|
34 |
function admin_menu_tree_page_view_admin_init() {
|
35 |
|
36 |
-
define( "admin_menu_tree_page_view_VERSION", "
|
37 |
define( "admin_menu_tree_page_view_URL", WP_PLUGIN_URL . '/admin-menu-tree-page-view/' );
|
38 |
define( "admin_menu_tree_page_view_DIR", WP_PLUGIN_DIR . '/admin-menu-tree-page-view/' );
|
39 |
|
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.0
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
33 |
|
34 |
function admin_menu_tree_page_view_admin_init() {
|
35 |
|
36 |
+
define( "admin_menu_tree_page_view_VERSION", "2.0" );
|
37 |
define( "admin_menu_tree_page_view_URL", WP_PLUGIN_URL . '/admin-menu-tree-page-view/' );
|
38 |
define( "admin_menu_tree_page_view_DIR", WP_PLUGIN_DIR . '/admin-menu-tree-page-view/' );
|
39 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.0
|
7 |
-
Stable tag:
|
8 |
|
9 |
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!
|
10 |
|
@@ -16,8 +16,7 @@ quickly find your pages by using the search box.
|
|
16 |
|
17 |
Works perfect in CMS-like WordPress installations with lots of pages in a tree hierarchy.
|
18 |
|
19 |
-
|
20 |
-
I have made an even more advanced version of the tree, where you also can search and re-order the pages. It's called
|
21 |
[CMS Tree Page View](http://wordpress.org/extend/plugins/cms-tree-page-view/).
|
22 |
|
23 |
#### Donation and more plugins
|
@@ -41,6 +40,9 @@ Now the tree with the pages will be visible in the admin menu to the left.
|
|
41 |
|
42 |
== Changelog ==
|
43 |
|
|
|
|
|
|
|
44 |
= 1.6 =
|
45 |
- Fixed: post titles where not escaped.
|
46 |
|
4 |
Tags: admin, page, pages, tree, view, admin menu, menu
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.0
|
7 |
+
Stable tag: 2.0
|
8 |
|
9 |
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!
|
10 |
|
16 |
|
17 |
Works perfect in CMS-like WordPress installations with lots of pages in a tree hierarchy.
|
18 |
|
19 |
+
If you want a tree with all your pages, but don't want it visible all the time, please check out my other plugin
|
|
|
20 |
[CMS Tree Page View](http://wordpress.org/extend/plugins/cms-tree-page-view/).
|
21 |
|
22 |
#### Donation and more plugins
|
40 |
|
41 |
== Changelog ==
|
42 |
|
43 |
+
= 2.0 =
|
44 |
+
- Added:Now you can order posts with drag and drop. Just click and hold mouse button and move post up/down. But please note that you can only move posts that have the same level/depth in the tree.
|
45 |
+
|
46 |
= 1.6 =
|
47 |
- Fixed: post titles where not escaped.
|
48 |
|