FeedbackJar
No-code platforms ✓ 2 minutes setup Easy

FeedbackJar + WordPress

FeedbackJar works on any WordPress site via a header/footer snippet plugin or a single wp_footer hook in your theme. Compatible with any theme and page builder.

Get your Widget ID free → 7-day free trial · No credit card required

How to install FeedbackJar in WordPress

1

Get your Widget ID

bash
# Sign up at app.feedbackjar.com
# Create a widget → copy your Widget ID
2

Install a header/footer snippet plugin

text
Plugins → Add New → search "WPCode" or "Insert Headers and Footers" → Install & Activate

Any header/footer snippet plugin works — WPCode, Insert Headers and Footers, or Header Footer Code Manager.

3

Paste the script into the Footer / Body section

html
<script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>
  window.fj.init('YOUR_WIDGET_ID');
</script>

Save. The widget now loads on every page and post.

4

Or add it to your theme — no plugin (optional)

php
// functions.php of your child theme
add_action('wp_footer', function () {
  ?>
  <script src="https://cdn.feedbackjar.com/sdk.js"></script>
  <script>window.fj.init('YOUR_WIDGET_ID');</script>
  <?php
});

Use a child theme so parent-theme updates don't overwrite the change.

What you get

  • Works with any header/footer snippet plugin
  • Or add it to functions.php with wp_footer — no plugin
  • Loads on every page, post, and archive
  • Compatible with any theme and page builder (Elementor, Divi, Gutenberg)
  • Custom trigger from any button or menu item
  • No performance hit — loads asynchronously

Add feedback to your WordPress app today

Sign up free, grab your Widget ID, and have the feedback widget running in your WordPress app in 2 minutes.

Start Free Trial 7-day free trial · No credit card required

Frequently Asked Questions

Looking for the full technical reference? Read the WordPress docs →