---
title: "WordPress integration — Sleekplan | Sleekplan"
canonical_url: "https://sleekplan.com/integrations/wordpress"
last_updated: "2026-05-28T16:20:56.043Z"
meta:
  description: "Single sign-on into any WordPress-powered site so users post feedback under their identity."
  "og:description": "Single sign-on into any WordPress-powered site so users post feedback under their identity."
  "og:title": "WordPress integration — Sleekplan | Sleekplan"
---

# Single sign-on into any WordPress-powered site so users post feedback under their identity.

## Overview

Drop the Sleekplan widget into any WordPress theme and let logged-in users post feedback as themselves. No second sign-up, no second password. Their WordPress profile (avatar, display name, role) carries straight through to every Sleekplan post, vote, and comment.

## How it works

The plugin renders the Sleekplan widget on any page, with SSO baked in. When a logged-in WordPress user opens the widget, we recognise them via a signed JWT containing their profile and role.

Vote weight, segment filters, and moderation permissions can key off the WP role: admins always trust, subscribers count as one vote each, paid members count as ten. Anonymous visitors fall back to the public widget flow.

## Configure

Install the Sleekplan WordPress plugin from the official directory, paste your workspace ID, and pick which pages render the widget. For headless WordPress, the REST API exposes the same SSO grant; see the docs for the JWT signing flow.

## **Explore other integrations **

[**Browse all **](https://sleekplan.com/integrations)

[![Cloudflare logo](https://sleekplan.com/_ipx/f_webp&s_44x44/images/integrations/cloudflare.png)**Cloudflare** One-click install for any Cloudflare-powered app. No DNS changes, no code edits.](https://sleekplan.com/integrations/cloudflare) [![Intercom logo](https://sleekplan.com/_ipx/f_webp&s_44x44/images/integrations/intercom.png)**Intercom** Capture feedback inside your Intercom Messenger and surface your roadmap + changelog on the Home screen.](https://sleekplan.com/integrations/intercom) [![Slack logo](https://sleekplan.com/_ipx/f_webp&s_44x44/images/integrations/slack.png)**Slack** Manage feedback from Slack: create posts, ship changelog updates, and get notified on every CSAT vote.](https://sleekplan.com/integrations/slack)

Build your own

## **Don't see it?**Build it.

REST API, real-time webhooks, JavaScript SDK and a full MCP server. Everything our own integrations use is yours to call.

[**Read the docs **](https://sleekplan.com/docs) [**Suggest an integration **](https://feedback.sleekplan.com/feedback/add?type=integrations)

POST/v1/posts 200 OK · 84MS

```
$ curl -X POST https://api.sleekplan.com/v1/posts \
  -H "Authorization: Bearer $SLEEK_KEY" \
  -d '{"title": "Bulk re-categorise", "category": "feature"}'

{
  "id": "p_482",
  "score": 0.81,
  "tags": ["inbox", "feature"]
}
```