EduardET

snippet 2

Nov 6th, 2017
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <!-- .et-top-search -->
  2. <?php if ( $header_vars['output_header_search_field'] ) { ?>
  3. <div class="et-top-search" style="<?php extra_visible_display_css( $header_vars['show_header_search_field'] ); ?>">
  4.     <?php
  5.     $output = sprintf(
  6.         '<form role="search" class="et-search-form wpc-form" method="get" action="%1$s">
  7.         <input type="search" class="et-search-field" placeholder="%2$s" value="%3$s" name="s" title="%4$s" />
  8.         <button class="et-search-submit"></button>
  9.         </form>',
  10.         esc_url( home_url( '/' ) ),
  11.         esc_attr_x( 'Search', 'placeholder', 'extra' ),
  12.         get_search_query(),
  13.         esc_attr_x( 'Search for:', 'label', 'extra' )
  14.     );
  15.     echo $output;
  16.     ?>
  17. </div>
  18. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment