Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Songs 2

// WP_Query arguments
$args = array (
	'post_type'              => array( 'songs' ),
	'pagination'             => false,
	'order'                  => 'ASC',
	'orderby'                => 'title',
);

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

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

// Restore original Post Data
wp_reset_postdata();