Show only childs and grandchilds of certain post in admin
Without seeing your code and arguments you are using in parse_query filter, I can be certain, but if think the post_parent__not_in query argument achieves what you want. function wpse_282340_exclude_posts_from_admin($query) { // bail early if we are not in the admin side if (!is_admin()) { return $query; } global $pagenow, $post_type; // check if we are … Read more