Skip to content

Instantly share code, notes, and snippets.

@amberhinds
Last active April 9, 2024 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amberhinds/b721c08d704cfc927bcbeb15f7257628 to your computer and use it in GitHub Desktop.
Save amberhinds/b721c08d704cfc927bcbeb15f7257628 to your computer and use it in GitHub Desktop.
edac_max_alt_length Accessibility Checker filter example
function change_max_alt_length( $max ) {
return 100; // Shorten alt text max character count to 100 from default (300).
}
add_filter( 'edac_max_alt_length', 'change_max_alt_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment