Advertisement
rdusnr

Untitled

Sep 11th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <?php
  2. /**
  3. * Output the search form markup.
  4. *
  5. * @since 2.7.0
  6. */
  7. ?>
  8.  
  9. <div id="<?php echo esc_attr( bp_current_component() ); ?>-dir-search" class="dir-search" role="search">
  10.  
  11. <form action="" method="get" id="search-<?php echo esc_attr( bp_current_component() ); ?>-form" class="custom row collapse">
  12.  
  13. <label class="nine columns">
  14. <input type="text" name="<?php echo esc_attr( bp_core_get_component_search_query_arg() ); ?>" id="<?php bp_search_input_name(); ?>" placeholder="<?php bp_search_placeholder(); ?>"/>
  15. </label>
  16.  
  17. <input class="three columns button small radius secondary postfix" type="submit" id="<?php echo esc_attr( bp_get_search_input_name() ); ?>_submit"
  18. name="<?php bp_search_input_name(); ?>_submit" value="<?php esc_attr_e( 'Search', 'buddypress' ) ?>"/>
  19.  
  20. </form>
  21.  
  22. </div><!-- #<?php echo esc_attr( bp_current_component() ); ?>-dir-search -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement