[ad_1]
Hi Webprom,
You may add the following filter to your active theme’s functions.php file to enable private posts in menus for logged in users.
add_filter( 'advanced-sidebar-menu/list-pages/parse-args', function( $args ) {
if ( is_user_logged_in() ) {
$args['post_status'] = [ 'publish', 'private' ];
}
return $args;
} );
More info may be found here.
Have a great day!
- This reply was modified 15 minutes ago by OnPoint Plugins. Reason: Formatting borke
