Custom Post Type order Title ASC
$index = ‘A’; $terms = get_terms(‘manufacturer’); foreach ($terms as $term) { if($index != strtoupper(substr($term->name, 0, 1))) { $index = strtoupper(substr($term->name, 0, 1)); echo ‘<h1>’. $index . ‘</h1>’; } ?> <h2><?php echo $term->name; ?></h2> <?php $args = array( ‘post_type’ => ‘cars’, ‘posts_per_page’ => -1, ‘orderby’ => ‘title’, ‘order’ => ‘ASC’, ‘tax_query’ => array( array( ‘taxonomy’ => … Read more