Guest User

Untitled

a guest
Mar 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. function kalium_header_search_field( $skin = '' ) {
  2. if ( ! get_data( 'header_search_field' ) ) {
  3. return;
  4. }
  5.  
  6. $animation = get_data( 'header_search_field_icon_animation' );
  7. ?>
  8. <div class="header-search-input <?php echo esc_attr( $skin ); ?>">
  9. <form role="search" method="get" action="<?php echo home_url(); ?>">
  10.  
  11. <div class="search-field">
  12. <span><?php _e( 'Search site...', 'kalium' ); ?></span>
  13. <input type="search" value="" autocomplete="off" name="s" />
  14. </div>
  15.  
  16. <div class="search-icon">
  17. <a href="#" data-animation="<?php echo $animation; ?>">
  18. <?php echo laborator_get_svg( 'images/icons/search.svg', null, array( 24, 24 ), true ); ?>
  19. </a>
  20. </div>
  21. </form>
  22.  
  23. </div>
  24. <?php
Add Comment
Please, Sign In to add comment