• File: search-btn.php
  • Full Path: /home/chassiw/www/wp-content/themes/kasuari/template/header/search-btn.php
  • File size: 464 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php class kasuari_search_wrap{}

if(class_exists( 'Redux' )) {
$options 			= get_option('kasuari_framework');
$search_bar_style	= $options['search_bar_style'];

	if($search_bar_style == 'expand')  { ?>
	<div class="search-wrap head-item">
		<button id="btn-search"><i class="icon-simple-line-icons-143"></i></button>
	</div>
	<?php }

	else { ?>
	<div class="search-form default-search head-item">
		<?php get_search_form(); ?>
	</div>
<?php }
}