Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Last active November 26, 2017 19:01
Show Gist options
  • Select an option

  • Save Shelob9/7a6bf74db9564213acf62503a4bb58a5 to your computer and use it in GitHub Desktop.

Select an option

Save Shelob9/7a6bf74db9564213acf62503a4bb58a5 to your computer and use it in GitHub Desktop.
Example code for caldera_forms_render_form_attributes filter. See: https://calderaforms.com/doc/caldera_forms_render_form_attributes/
<?php
/**
* Indicate to screen readers and other assistive devices that a Caldera Form is being used as a search form.
*/
add_filter( 'caldera_forms_render_form_attributes', function( $form_attributes, $form ){
$form_attributes[ 'role' ] = 'search';
return $form_attributes;
}, 15, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment