Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// WP_Query arguments
$args = array(
	'post_parent'            => '111111',
);

// The Query
$brandia_wedocs_section_child_items = new WP_Query( $args );

// The Loop
if ( $brandia_wedocs_section_child_items->have_posts() ) {
	while ( $brandia_wedocs_section_child_items->have_posts() ) {
		$brandia_wedocs_section_child_items->the_post();
		// do something
	}
} else {
	// no posts found
}

// Restore original Post Data
wp_reset_postdata();