Different excerpt styles per category, but chronological
You’re on the right path. You can add classes to your content in the loop based on the terms assigned to each piece of work. For example, <?php if( has_term( $term, $taxonomy, $post ) ) { $work_classes=”big-item”; } ?> <div class=”<?php echo $work_classes; ?>”> … </div> This only adds the class big-item when the taxonomy … Read more