Open Accessibility
by Adam Greenwell 5 (2 reviews)

Open Accessibility

An open-source accessibility widget that helps make your WordPress site more accessible to users with disabilities.

Open Accessibility ranks #20,116 among WordPress.org plugins with 50+ active installations, is #131 of 626 in the Accessibility category, a 5/5 rating from 2 reviews, and was last updated Aug 22, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1
v1.4.0 Current Version v1.4.0
Updated 4 weeks ago Last Update on 22 Aug, 2026
Refreshed 10 hours ago Last Refreshed on
#131 of 626 in Accessibility Top 50% by installs Actively maintained
View on WordPress.org
Rank
#20,116
No change
Active Installs
50+
+16.3%
KW Avg Position
40
No change
Downloads
963
+1 today
Support Resolved
100%
No change
Rating
100%
Review 5 out of 5
5 (2 reviews)

Next Milestone 60

Total Progress 20%
50+ 60+
4,204
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 8 more installs to reach 60+

Rank Changes

20,018 20,230 20,443 20,656 20,868 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026
19,894 20,375 20,855 21,335 21,816 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026
Current #20,116
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026
0 10 20 30 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
2 reviews
Overall 100%
5
2 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Support Threads Overview

Resolved
Unresolved
1
Total Threads
1
Resolved
0
Unresolved
100%
Resolution Rate

Frequently Asked Questions

Common questions about Open Accessibility

This plugin helps improve accessibility and addresses many WCAG criteria, but complete compliance requires a comprehensive approach that includes proper content structure, image alt text, semantic HTML, and more. We recommend using this plugin as part of your accessibility strategy, not as a complete solution.
You can choose from four positions: left side, right side, bottom left, or bottom right of the screen. You can also customize the size and appearance of the widget.
Yes. Use the [open_accessibility] shortcode in your content, a block, or a template file (e.g. <?php echo do_shortcode('[open_accessibility]'); ?>). By default the panel automatically opens toward the side of the screen with the most room, so a toggle placed in your header opens downward and a toggle near the footer opens upward. You can also force a placement with the direction and align attributes: [open_accessibility direction="down" align="right"] direction accepts `auto` (default), `up`, or `down`. `align` accepts `auto` (default), `left` (panel extends to the right of the button), or `right` (panel extends to the left of the button).
Yes, there's a "Hide Accessibility Panel" option in the widget that allows users to hide it. It will remain hidden for 24 hours.
Yes, the plugin includes a built-in accessibility statement generator that creates a statement based on your organization details.
The plugin is designed to be lightweight and only loads what's necessary. The impact on page load times should be minimal.
Yes, all user preferences are saved using local storage in their browser, so settings persist between visits.
Yes, this plugin is compatible with multisite installations.
Yes. Open Accessibility exposes a shared targeting layer that themes can adjust with PHP filters, HTML attributes, and a small JavaScript API. Typography controls use these targets, and the same resolver also supports links, media, interactive controls, and opt-in layout relief. Example PHP filters: add_filter( 'open_accessibility_target_roots', function( $roots ) { $roots[] = '.my-theme-article-body'; return $roots; } ); add_filter( 'open_accessibility_target_excluded_selectors', function( $selectors ) { $selectors[] = '.my-theme-sidebar'; $selectors[] = '.promo-card'; return $selectors; } ); add_filter( 'open_accessibility_layout_relief_selectors', function( $selectors ) { $selectors[] = '.my-theme-fixed-story-card'; return $selectors; } ); add_filter( 'open_accessibility_target_group_selectors', function( $selectors, $group_name ) { if ( 'readable_text' === $group_name ) { $selectors[] = '.my-theme-readable-copy'; } return $selectors; }, 10, 2 ); add_filter( 'open_accessibility_target_config', function( $config ) { $config['groups']['interactive'][] = '.my-theme-action'; return $config; } ); Use open_accessibility_target_group_selectors to refine a specific target group such as readable_text, headings, links, media, or interactive. If a theme needs complete control, open_accessibility_target_config receives the final full targeting array before it is passed to the frontend. Returning an empty selector array disables that default selector set; for example, empty roots disables the automatic body fallback unless a template opts back in with data-oa-root. Built-in widget exclusions and explicit ignore attributes still apply. Templates can use data-oa-root, data-oa-target, data-oa-ignore, .open-accessibility-ignore, data-oa-relax-layout, and data-oa-preserve-layout. Use data-oa-root to add content roots, data-oa-target to opt an element into one or more groups, data-oa-ignore or .open-accessibility-ignore to exclude a region, data-oa-relax-layout to opt a container into layout relief, and data-oa-preserve-layout to keep a region out of layout relief.
Yes. The plugin exposes window.OpenAccessibility after the widget initializes: window.OpenAccessibility.refresh(); window.OpenAccessibility.getState(); window.OpenAccessibility.setState({ textSize: 2 }); window.OpenAccessibility.getTargets('readable_text'); window.OpenAccessibility.debug(); window.OpenAccessibility.debug() returns current state and target diagnostics. Frontend selector diagnostics are available from the console and API when the plugin debug option is enabled, or when a developer enables them in the browser with `localStorage.setItem('openAccessibilityDebug', '1')`. It also dispatches lifecycle events on document: openAccessibility:ready, openAccessibility:targetsRefreshed, openAccessibility:beforeApply, openAccessibility:afterApply, and openAccessibility:reset.

Sign In / Register

You need to sign in or register to use this feature.