I have parent posts (custom post type hierarch=true) with ID 1, 2, 3, 4.
The parent posts with ID 2 and 4 have child pages.
I need to retrieve only posts 2 and 4 and all of their child pages.
Something like this
$argsch = array('orderby' => 'date','order' => 'DESC','post_type' => 'products', 'include' => '2, 4');
$childs = get_posts($argsch);
How can I edit this to return child pages of the included id’s?