Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

FAQ query by tax

// WP_Query arguments
$args = array(
	'post_type'              => array( 'faqs' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => true,
	'posts_per_page'         => '-1',
	'posts_per_archive_page' => '-1',
	'ignore_sticky_posts'    => false,
	'order'                  => 'ASC',
	'orderby'                => 'date',
);

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