Jeopardy Home
// WP_Query arguments $args = array( 'posts_per_page' => '5', 'order' => 'ASC', 'orderby' => 'title', 'tax_query' => array( array( 'taxonomy' => 'category', 'terms' => 'libro_de_mormon', 'field' => 'slug', ), ), ); // The Query $query = new WP_Query( $args );