Visibility for Private Pages Resolved Requested: 3 years and 7 months ago Is it possible to display the menu also if a page is in private mode? (for dev-purpose) Right now the menu is not visible for this Status of Page.
OnPoint Plugins 3 years and 7 months ago Hi Felix, Adding the following filter to your active theme’s functions.php file will allow private pages to show in the menu. <?php add_filter( 'advanced_sidebar_menu_list_pages_args', function ( $args ) { $args['post_status'] = [ 'publish', 'private' ]; return $args; } ); Have a great day! Mat Lipe
Hi Felix,
Adding the following filter to your active theme’s functions.php file will allow private pages to show in the menu.
Have a great day!
Mat Lipe