| 1 |
<?php |
| 2 |
defined('ABSPATH') || exit; |
| 3 |
|
| 4 |
$category = ''; |
| 5 |
if ($attr['catShow']) { |
| 6 |
$category .= '<div class="ultp-category-grid ultp-category-'.$attr['catStyle'].' ultp-category-'.$attr['catPosition'].'">'; |
| 7 |
$category .= '<div class="ultp-category-in ultp-customCatColor-'.$attr['customCatColor'].'">'; |
| 8 |
$cat = get_the_terms($post_id, 'category'); |
| 9 |
if (!empty($cat)) { |
| 10 |
foreach ($cat as $val) { |
| 11 |
$color = ''; |
| 12 |
if (isset($attr['customCatColor'])){ |
| 13 |
if ($attr['customCatColor']){ |
| 14 |
$color = get_term_meta($val->term_id, 'ultp_category_color', true); |
| 15 |
if(isset($attr['onlyCatColor'])){ |
| 16 |
if($attr['onlyCatColor']){ |
| 17 |
$color = 'style="color: '.($color ? $color : '#CE2746').'"'; |
| 18 |
}else{ |
| 19 |
$color = 'style="background-color: '.($color ? $color : '#CE2746').';color: #fff;"'; |
| 20 |
} |
| 21 |
}else{ |
| 22 |
$color = 'style="background-color: '.($color ? $color : '#CE2746').';color: #fff;"'; |
| 23 |
} |
| 24 |
} |
| 25 |
} |
| 26 |
if($attr['onlyCatColor']){ |
| 27 |
$category .= '<a href="'.get_term_link($val->term_id).'" '.$color.' '.($attr['openInTab'] ? 'target="_blank"' : '').'>'.$val->name.'</a>'; |
| 28 |
} else { |
| 29 |
$category .= '<a class="ultp-customCatOnlyColor-'.$attr['customCatColor'].'" href="'.get_term_link($val->term_id).'" '.$color.' '.($attr['openInTab'] ? 'target="_blank"' : '').'>'.$val->name.'</a>'; |
| 30 |
} |
| 31 |
} |
| 32 |
} |
| 33 |
$category .= '</div>'; |
| 34 |
$category .= '</div>'; |
| 35 |
} |