Adds a CMS-like tree overview of all your pages and custom posts to WordPress – much like the view often found in a page-focused CMS.
Within this tree you can edit pages, view pages, add pages, search pages, and drag and drop pages to rearrange the order.
CMS Tree Page View is a good alternative to plugins such as pageMash, WordPress Page Tree and My Page Order.
Page management in WordPress won’t get any easier than this!
FEATURES AND HIGHLIGHTS:
- View your pages & posts in a tree-view, like you view files in Windows Explorer or the Finder in OS X
- Drag and drop to rearrange/order your pages
- Add pages after or inside a page
- Add multiple pages at once – perfect for setting up a new site structure
- Edit pages
- View pages
- Search pages
- Available for both regular pages and custom posts
- Works with both hierarchical and non-hierarchical post types
- View your site hierarchy directly from the WordPress dashboard
- Drag and drop between trees with different post types to change to post type of the dragged item, i.e. change a regular page to became any custom post type
- Support for translation plugin WPML, so you can manage all the languages of your site
SHOW YOUR PAGES ON YOUR SITE IN THE SAME ORDER AS THEY ARE IN CMS TREE PAGE VIEW
To show your pages on your website in the same order as they appear in this plugin, you must sort them by “menu order”.
// Example using query_posts
$args = array(
'post_type' => 'page',
'orderby'=> 'menu_order',
'order'=>'ASC',
);
$posts = query_posts($args);
// Example using wp_query
$args = array(
'post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'ASC',
);
$query = new WP_Query( $args );