Needed a space for style guidelines

This commit is contained in:
Claudiu Lodromanean 2017-01-18 14:58:36 -08:00
parent cc5452cfe3
commit b977784a66
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ if ( ! defined( 'ABSPATH' ) ) {
foreach ( $attribute_values as $attribute_value ) :
if ( $attribute_taxonomy->attribute_public ) :
$values[] = '<a href="'. esc_url( get_term_link( $attribute_value->term_id, $attribute->get_name() ) ) . '" rel="tag">' . $attribute_value->name . '</a>';
$values[] = '<a href="' . esc_url( get_term_link( $attribute_value->term_id, $attribute->get_name() ) ) . '" rel="tag">' . $attribute_value->name . '</a>';
else:
$values[] = $attribute_value->name;
endif;