FAQ with custom field
// WP_Query arguments $args = array( 'post_type' => array( 'faq' ), 'post_status' => array( 'publish' ), 'posts_per_page' => '-1', 'order' => 'ASC', 'orderby' => 'menu_order', ); // The Query $query = new WP_Query( $args );
// WP_Query arguments $args = array( 'post_type' => array( 'faq' ), 'post_status' => array( 'publish' ), 'posts_per_page' => '-1', 'order' => 'ASC', 'orderby' => 'menu_order', ); // The Query $query = new WP_Query( $args );