Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Plugin Name: Rename Genesis Search input field from s
- Plugin URI: https://www.damiencarbery.com
- Description: Change from s to something else.
- Author: Damien Carbery
- Version: 0.1
- */
- add_filter( 'genesis_attr_search-form-input', 'dcwd_attributes_search_form_input', 15, 3 );
- function dcwd_attributes_search_form_input( $attributes, $context, $args ) {
- $attributes['name'] = 'super';
- return $attributes;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement