PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.3.3
Forumax – AI Powered Advanced Community Forum Plugin v1.3.3
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / Elementor / inc / hero / keywords.php

keywords.php in Forumax – AI Powered Advanced Community Forum Plugin 1.3.3, at includes/Elementor/inc/hero/keywords.php

18 lines 818 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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; ?>