WordPress

Add Inclusify to your WordPress website in just a few minutes.

Method 1: Theme Editor

The quickest way to add Inclusify to your WordPress site.

1

Open Theme Editor

Go to Appearance → Theme File Editor in your WordPress admin.

2

Find footer.php

In the right sidebar, click on footer.php (or Theme Footer).

3

Add the Widget Code

Paste this code just before the closing </body> tag:

footer.php
<script src="https://app.inclusifyapp.com/w/YOUR-DOMAIN.com.js" async></script>

Replace YOUR-DOMAIN.com with your actual domain.

4

Update File

Click Update File to save your changes.

Method 2: Insert Headers and Footers Plugin

Recommended if you want to preserve your changes during theme updates.

  1. Install and activate the WPCode plugin (formerly Insert Headers and Footers)
  2. Go to Code Snippets → Header & Footer
  3. Paste the widget code in the Footer section
  4. Click Save Changes
HTML
<script src="https://app.inclusifyapp.com/w/YOUR-DOMAIN.com.js" async></script>

Using a Child Theme

If you're using a child theme, add the script using the wp_footer hook in your child theme's functions.php:

functions.php
add_action('wp_footer', function() {
    echo '<script src="https://app.inclusifyapp.com/w/YOUR-DOMAIN.com.js" async></script>';
});

Compatibility

  • • Works with all WordPress themes
  • • Compatible with page builders (Elementor, Divi, WPBakery, etc.)
  • • Works with WooCommerce
  • • No conflicts with caching plugins