Skip to content
NEWSADA Title II web deadlines: April 24, 2026 (50k+ pop) · April 26, 2027 (under 50k) — Is your site compliant?ADA Title II: April 2026 & 2027 deadlinesLearn more →

WordPress

Tip
The official Angstroma WordPress plugin is the easiest way to install — one click from the WP admin, no code required. Direct download: angstroma-accessibility-1.0.0.zip. The manual methods below are provided for teams that prefer not to install a plugin.

If you'd rather skip the plugin, three manual methods work on any WordPress or WooCommerce site.

Method A — Insert Headers and Footers plugin

No code editing required. Best for non-technical users.

  1. In WordPress admin, go to Plugins → Add New
  2. Search for "Insert Headers and Footers" (by WPBeginner, 1M+ active installs)
  3. Install and activate
  4. Go to Settings → Insert Headers and Footers
  5. Paste the snippet in the Scripts in Footer section
  6. Click Save
<script
  src="https://cdn.angstroma.com/widget.js"
  data-key="ang_live_YOUR_KEY"
  async
></script>

Method B — functions.php

Add to your theme's functions.php. Use a child theme to avoid losing changes on theme updates.

functions.php
function angstroma_widget_embed() {
    echo '<script src="https://cdn.angstroma.com/widget.js" data-key="ang_live_YOUR_KEY" async></script>';
}
add_action( 'wp_footer', 'angstroma_widget_embed' );

Method C — footer.php

Edit Appearance → Theme Editor → footer.php and paste before </body>. This is overwritten on theme updates unless you use a child theme.

footer.php
    <script
      src="https://cdn.angstroma.com/widget.js"
      data-key="ang_live_YOUR_KEY"
      async
    ></script>
<?php wp_footer(); ?>
</body>