Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wp_query post

// WP_Query arguments
$args = array(
	'post_type'              => array( 'post' ),
	'offset'                 => '4',
);

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