Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gecka-submenu.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Gecka Submenu
Plugin URI: http://gecka-apps.com/wordpress-plugins/geka-submenu/
Description: Enhances the worpdress nav menu system, autopopulate with children pages
Version: 0.7.3
Version: 0.7.4
Author: Gecka Apps, Gecka
Author URI: http://gecka-apps.com
Text Domain: gecka-submenu
Expand Down
2 changes: 1 addition & 1 deletion models/NavMenuHacks.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function wp_get_nav_menu_items($items, $menu, $args)

case 'subpages' :

$pages = get_pages(apply_filters('gecka-submenu-get_pages', array('child_of' => $item->object_id, 'sort_column' => 'menu_order, post_title', 'post_type' => isset($item->object) ? $item->object : 'page')));
$pages = get_pages(apply_filters('gecka-submenu-get_pages', array('child_of' => $item->object_id, 'sort_column' => 'menu_order, post_title', 'post_type' => isset($item->object) ? $item->object : 'page', 'post_status' => current_user_can( 'read_private_pages' ) ? 'publish,private' : 'publish')));

$this->setup_posts('post', $item, $pages, $items, $order);

Expand Down
6 changes: 4 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: Gecka
Tags: nav menu, 3.0, submenu, sub-menu, child, child men, subpages, subpage, dynamic menu, dynamic subpages, dynamic submenu
Requires at least: 3.0
Tested up to: 4.4
Stable tag: 0.7.3
Tested up to: 4.7
Stable tag: 0.7.4
Donate link: http://gecka-apps.com/wordpress-plugins/gecka-submenu-pro/

Submenu autopopulates any nav menu page item with its children and allows to put menus, or portion of menus, anywhere in your site.
Expand Down Expand Up @@ -41,6 +41,8 @@ http://www.youtube.com/watch?v=DHjMfD-k2Mo
2. Autopopulating with child pages

== Changelog ==
= 0.7.4
* Show private pages

= 0.7.3 =
* Support WP 4.3
Expand Down