You appear to be a bot. Output may be restricted
Description
Add attributes for search form meta tag.
Usage
$array = genesis_attributes_search_form_meta( $attributes );
Parameters
- $attributes
- ( array ) required – Existing attributes for search form meta element.
Returns
array Amended attributes for search form meta element.
Source
File name: genesis/lib/functions/markup.php
Lines:
1 to 8 of 8
function genesis_attributes_search_form_meta( $attributes ) { $attributes['class'] = ''; $attributes['content'] = home_url( '/?s={s}' ); return $attributes; }