List Category Posts not showing posts marked private to logged-in users
List Category Posts plugin uses get_posts to actually get the posts and its default post_status is publish and that is way you won’t get any private posts. To “Fix” it you can edit the file named include/CatList.php of the plugin and add $lcp_query .= ‘&post_status=private’; before line 51 before $this->lcp_categories_posts = get_posts($lcp_query); this will get … Read more