Taxonomy Images
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
<!-- https://wordpress.org/plugins/taxonomy-images/ -->
<!-- To display the image: -->
<?php // print wp_get_attachment_image( $term->image_id, 'lifestyle-category-thumb' ); ?>
<!-- To display image linking to the taxonomy term archive w/o title tag: -->
<?php // print '<a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">' . wp_get_attachment_image( $term->image_id, 'lifestyle-category-thumb' ) . ''; ?>
<!-- To display image linking to the taxonomy term archive with title tag: -->
<?php echo '<a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '" title="' . sprintf( __( "View all %s neighborhoods" ), $term->name ) . '" ' . '>' . wp_get_attachment_image( $term->image_id, 'lifestyle-category-thumb' ) . '</a>'; ?>