Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Fly Header Info

// WP_Query arguments
$args = array (
	'post_type'              => array( 'information' ),
	'post_status'            => array( 'publish' ),
	'posts_per_page'         => '1',
	'order'                  => 'DESC',
	'orderby'                => 'menu_order',
);

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

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

// Restore original Post Data
wp_reset_postdata();