| 1 |
<?php if ( $settings['is_keywords'] == 'yes' && ! empty( $settings['keywords'] ) ) : ?> |
| 2 |
<div class="header_search_keyword search-white mt-3"> |
| 3 |
<?php if ( ! empty( $settings['keywords_label'] ) ) : ?> |
| 4 |
<span class="header-search-form__keywords-label search_keyword_label"> <?php echo $settings['keywords_label'] ?> </span> |
| 5 |
<?php endif; ?> |
| 6 |
<?php if ( ! empty( $settings['keywords'] ) ) : ?> |
| 7 |
<ul class="list-unstyled"> |
| 8 |
<?php |
| 9 |
foreach ( $settings['keywords'] as $keyword ) : |
| 10 |
?> |
| 11 |
<li class="wow fadeInUp" data-wow-delay="0.2s"> |
| 12 |
<a href="#"> <?php echo esc_html( $keyword['title'] ); ?> </a> |
| 13 |
</li> |
| 14 |
<?php endforeach; ?> |
| 15 |
</ul> |
| 16 |
<?php endif; ?> |
| 17 |
</div> |
| 18 |
<?php endif; ?> |