Need more customization Resolved Requested: 3 years and 8 months ago On the page above…we want to hide the grandparent page too…Cal Adventures for our example Also, we want to be able to customize the menu order on some pages, and just have the alphabetical order on other pages. Please advise. Thanks
OnPoint Plugins 3 years and 8 months ago This filter should take care of it :-). <?php add_filter( 'advanced_sidebar_menu_top_parent', function ( $top ) { if ( is_page() ) { if ( 0 !== (int) get_queried_object()->post_parent ) { return get_queried_object()->post_parent; } return get_queried_object()->ID; } return $top; }, 99 ); Have a great weekend!
Yes Mat, that is absolutely correct!
This filter should take care of it :-).
Have a great weekend!
You do the same….Thanks!