I am using the following code to display the posts.
$args = array(
'posts_per_page' => -1,
'post_type' => 'products',
'post_status' => 'publish',
'post_parent' => 0,
'orderby' => 'menu_order',
'order' => 'ASC',
);
$the_query = new WP_Query($args);