Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Basic Article Query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'Articles' ),
	'post_status'            => array( 'Publish' ),
	'nopaging'               => true,
	'ignore_sticky_posts'    => true,
	'order'                  => 'ASC',
	'orderby'                => 'title',
);

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