Skip to content
WordPress Accessibility: How to Make Your Site Usable for Everyone
Web Developmentđź“‹ Guide

WordPress Accessibility: How to Make Your Site Usable for Everyone

Erik KellerErik Keller••Updated on: •16 min read•333 views

Key Takeaways

  • âś“WordPress accessibility ensures users with disabilities can navigate, read, and interact with your site content.
  • âś“WCAG 2.1 Level AA compliance requires proper heading structure, alt text, color contrast, and keyboard navigation.
  • âś“Accessibility plugins like WP Accessibility and One Click Accessibility automate common compliance tasks.
  • âś“Manual testing with screen readers and keyboard-only navigation reveals issues automated tools often miss.
  • âś“Accessible websites improve SEO, expand audience reach, and reduce legal risk related to discrimination lawsuits.
```html

Web accessibility means building websites that people with disabilities can use effectively. This includes people who use screen readers, keyboard-only navigation, voice control, screen magnifiers, or who have color vision limitations. In the WordPress ecosystem, accessibility is both a legal requirement in many jurisdictions and a practical way to reach a wider audience—over 1 billion people worldwide have some form of disability.

In this guide, we cover practical steps to make your WordPress site accessible, following the Web Content Accessibility Guidelines (WCAG) 2.2 at the AA level—the standard most commonly required by accessibility laws including the ADA (US), EAA (EU), and AODA (Canada). For more information, you can refer to the WCAG Guidelines.

Understanding WCAG 2.2 Principles

WCAG is organized around four principles, known as POUR:

PrincipleWhat It MeansWordPress Examples
PerceivableUsers can perceive the content through sight, hearing, or touchAlt text for images, captions for videos, sufficient color contrast
OperableUsers can navigate and interact with the interfaceKeyboard navigation, skip links, no keyboard traps
UnderstandableUsers can understand the content and how to use the interfaceClear language, consistent navigation, error messages
RobustContent works across browsers, devices, and assistive technologiesValid HTML, proper ARIA roles, semantic markup

Choosing an Accessible Theme

Your WordPress theme's HTML structure and CSS form the foundation of your site's accessibility. When choosing a WordPress theme, evaluate these accessibility factors:

  • Semantic HTML: The theme uses proper HTML5 elements (header, nav, main, article, aside, footer) instead of generic divs for everything
  • Heading hierarchy: H1 → H2 → H3 follows a logical order without skipping levels
  • Skip links: A "Skip to content" link is present as the first focusable element, allowing keyboard users to bypass navigation
  • Keyboard navigation: All interactive elements (links, buttons, forms) are reachable and usable with the Tab key
  • Focus indicators: Focused elements have a visible outline or highlight (not removed with outline: none)
  • Color contrast: Text meets WCAG AA contrast ratios (4.5:1 for normal text, 3:1 for large text)

Themes tagged "accessibility-ready" on WordPress.org have passed a basic accessibility review. However, this tag indicates a starting point, not full WCAG compliance. Among popular themes, GeneratePress is notably well-coded with clean semantic HTML and proper ARIA landmarks.

Image Accessibility

Alt Text

Every meaningful image needs descriptive alt text. WordPress makes this straightforward—the alt text field is available in the Media Library and when inserting images into content.

Image TypeAlt Text ApproachExample
Product photoDescribe the product"Red leather crossbody bag with gold buckle, front view"
ScreenshotDescribe what the screenshot shows"WordPress dashboard showing Plugins page with 12 active plugins"
InfographicSummarize the key information"Comparison chart: Elementor vs Gutenberg features. Elementor has 100+ widgets, Gutenberg has 90+ blocks"
Decorative imageEmpty alt (alt="")Background patterns, dividers, purely decorative icons
Chart/graphDescribe the trend or key data point"Line chart showing website traffic increasing 45% from January to December 2025"

Image Optimization for Accessibility

  • Do not use images of text—use actual text styled with CSS instead
  • Ensure text embedded in images meets contrast requirements
  • Provide long descriptions for complex images (charts, diagrams) using an adjacent paragraph or the longdesc attribute
  • Ensure images have appropriate dimensions so they do not cause layout shifts (CLS)

Keyboard Navigation

Many users navigate websites entirely with a keyboard—Tab to move forward, Shift+Tab to move backward, Enter to activate links/buttons, Space to toggle checkboxes and click buttons, and Escape to close modals.

Common Keyboard Accessibility Issues

  • Focus traps: Modal dialogs that do not allow tabbing back to the main content (modals should trap focus inside the modal, and Escape should close them)
  • Missing focus indicators: CSS that removes the default outline on focused elements (never use *:focus { outline: none } globally)
  • Non-interactive elements with click handlers: Divs or spans with onClick events that are not keyboard accessible (use buttons or links instead)
  • Dropdown menus that only open on hover: Keyboard users cannot trigger hover states. Menus should open on focus/Enter as well
  • Custom components without ARIA: Tabs, accordions, and carousels built without proper ARIA roles and keyboard handlers

Color and Contrast

WCAG AA requires these minimum contrast ratios:

ElementMinimum RatioExample (Pass)Example (Fail)
Normal text (<18px)4.5:1#333 on #fff (12.6:1)#999 on #fff (2.8:1)
Large text (≥18px or ≥14px bold)3:1#555 on #fff (7.4:1)#aaa on #fff (2.3:1)
UI components (buttons, inputs)3:1Blue #2563eb button (4.6:1)Light blue #93c5fd (1.8:1)
Non-text content (icons, borders)3:1Dark icon on light backgroundLight gray icon on white

Use tools like WebAIM's Contrast Checker or the axe browser extension to verify contrast ratios. Do not rely on color alone to convey information—use text labels, patterns, or icons in addition to color coding.

Forms Accessibility

Forms are one of the most critical areas for accessibility. Whether using Gutenberg blocks, Gravity Forms, or WPForms:

  • Label every input: Use the <label> element associated with each input via the for/id attribute. Placeholder text is not a substitute for labels
  • Group related fields: Use <fieldset> and <legend> for groups of related inputs (e.g., shipping address fields)
  • Provide error messages: When validation fails, identify which field has the error and describe how to fix it. Use aria-describedby to associate error messages with their fields
  • Mark required fields: Use the required attribute and visually indicate required fields with text (not just an asterisk)
  • Support autocomplete: Add appropriate autocomplete attributes (name, email, tel, address-line1) so browsers can auto-fill form data

Content Accessibility

Heading Structure

Proper heading hierarchy helps screen reader users understand page structure and navigate between sections. Rules:

  • One H1 per page (the page/post title)
  • H2 for main sections
  • H3 for sub-sections within an H2
  • Never skip levels (H2 → H4 without H3 is incorrect)
  • Do not use headings for visual styling—use CSS classes instead

Link Text

Avoid generic link text that is meaningless out of context:

Poor Link TextAccessible Link Text
"Click here""Read the WordPress security guide"
"Read more""Read the full Elementor Pro review"
"Learn more""Learn how to optimize WooCommerce checkout"
"Here""Download the performance benchmarks report"

Tables

Data tables should include:

  • <thead> with <th> elements for column headers (with scope="col")
  • <th scope="row"> for row headers
  • A <caption> element describing the table's purpose
  • Simple structure—avoid merged cells when possible, as they are difficult for screen readers to interpret

Testing Your Site's Accessibility

ToolTypeWhat It Tests
axe DevToolsBrowser extensionAutomated WCAG violation detection
WAVEBrowser extension / webVisual accessibility evaluation with inline annotations
LighthouseChrome DevToolsAccessibility audit with scores and recommendations
Keyboard testingManualNavigate the entire site using only Tab, Enter, and Escape
Screen readerManualTest with VoiceOver (Mac), NVDA (Windows), or TalkBack (Android)

Automated tools catch approximately 30-50% of accessibility issues. Manual testing with a keyboard and screen reader is necessary to identify interaction-based problems that automated tools cannot detect.

WordPress Plugins for Accessibility

  • WP Accessibility: Adds skip links, fixes common accessibility issues, adds toolbar for user preferences
  • One Click Accessibility: Adds a frontend accessibility toolbar (font size, contrast, links highlight)
  • Starter templates with accessibility: Astra and GeneratePress both have strong accessibility foundations in their base themes

Note: Accessibility overlay plugins (that add a floating widget with "fix" buttons) are widely criticized by the accessibility community. They do not make a website accessible—they add a superficial layer that can actually interfere with assistive technology. Focus on building accessibility into your theme and content rather than relying on overlays.

Frequently Asked Questions

Is WordPress accessible out of the box?

WordPress core has improved significantly in accessibility. The admin panel is largely keyboard navigable, and the block editor includes ARIA labels. However, your site's accessibility depends heavily on the theme and plugins you use. A theme with poor HTML structure will undermine WordPress's built-in accessibility features.

Do I legally need an accessible website?

In many jurisdictions, yes. The ADA (US), European Accessibility Act (EU, effective June 2025), AODA (Canada), and similar laws require websites to be accessible. The specific requirements depend on your location, business type, and audience. Consult a legal professional for requirements specific to your situation.

Does accessibility affect SEO?

Yes, there is significant overlap. Proper heading structure, descriptive alt text, semantic HTML, fast page loading, and mobile-friendliness benefit both accessibility and SEO. Sites that follow WCAG guidelines tend to rank better because they provide a fundamentally better user experience. For SEO best practices, see our checklist.

Can page builders create accessible websites?

Elementor and other page builders can create accessible content if used correctly. The key is ensuring proper heading hierarchy, adding alt text to images, using semantic widgets (buttons instead of styled divs), and testing keyboard navigation. The builder itself does not determine accessibility—how you use it does.

What is the most common accessibility mistake on WordPress sites?

Missing or inadequate alt text on images is the most frequently reported WCAG violation. The second most common is insufficient color contrast. Both are straightforward to fix—they require attention and consistent practice rather than technical expertise.

How do I make WooCommerce accessible?

WooCommerce's default templates have reasonable accessibility. Key areas to verify: product image alt text, form labels on checkout fields, keyboard navigability of the cart and checkout process, and accessible error messages for form validation failures. Using an accessible theme as the foundation significantly reduces the WooCommerce-specific work needed.

Build Accessible WordPress Sites

Start with an accessible theme foundation. Browse lightweight, well-coded themes that prioritize semantic HTML and WCAG compliance.

Browse Accessible Themes →
```

Frequently Asked Questions

Is WordPress accessible out of the box?
WordPress core follows accessibility guidelines and includes features like keyboard navigation in the admin, ARIA labels, and skip navigation links. However, theme and plugin choices significantly affect frontend accessibility. Choose accessibility-ready themes for the best baseline.
What are WCAG guidelines and which level should I target?
WCAG (Web Content Accessibility Guidelines) defines three conformance levels: A, AA, and AAA. Level AA is the standard target for most websites and is required by many legal frameworks. It covers contrast ratios, keyboard navigation, alt text, and form labeling.
How do I test my WordPress site for accessibility?
Use automated tools like WAVE, axe DevTools, or Lighthouse for initial scanning. Then conduct manual testing with keyboard-only navigation, screen reader testing (NVDA or VoiceOver), and color contrast checking. Automated tools catch about 30% of issues; manual testing is essential.
Do I need accessibility for a small business website?
Yes. Beyond legal requirements in many jurisdictions, accessible websites reach a wider audience and often provide better user experience for all visitors. An estimated 15-20% of the global population has some form of disability.
What are the most common WordPress accessibility issues?
Missing alt text on images, insufficient color contrast, missing form labels, non-keyboard-navigable menus, auto-playing media without controls, and missing skip navigation links are the most frequently found accessibility issues on WordPress sites.

Share this post

About the Author

Erik Keller
Erik Keller

WordPress Expert

Senior WordPress specialist with extensive experience in themes, plugins, and WooCommerce development. Passionate about helping businesses succeed with WordPress solutions.

WordPressWooCommerceTheme DevelopmentPlugin DevelopmentPerformance Optimization

Stay Updated

Get the latest WordPress tips and tutorials delivered to your inbox.