[Plugin: Subpages Navigation] show same level pages
-
thanks for the plugin. we wanted to be able to show other pages in the same group. an “in this section” type widget. the restriction is easy, you just set it to only show pages who have the same parent. here’s what i did (it’s an easy update).
around line 249, add this:
<option value="2" <?php selected($instance['root'], 2); ?>><?php _e('same level pages', 'olt_subpages_navigation'); ?></option>
that adds an option to the select list in the back end.
around line 75, add this:
elseif($root == 2): #all pages $root_id = "0"; $pages = get_pages("sort_column=menu_order&child_of=".$post->post_parent);
that gets the pages with the same post parent.
https://www.ads-software.com/extend/plugins/subpage-navigation/
- The topic ‘[Plugin: Subpages Navigation] show same level pages’ is closed to new replies.