PUBVOICE is an AI-powered text-to-speech (TTS) service that converts your WordPress articles into high-quality audio — automatically. Add a “listen path” to your blog so readers can consume your content during commutes, workouts, or any screen-free moment.
Free plan available — start with no credit card required.
The podcast market continues to grow year after year. According to Edison Research, 47% of Americans aged 12+ listen to podcasts monthly. In Japan, audiobook usage is growing ~20% year-over-year (Yano Research Institute). AI voice synthesis quality has improved dramatically while costs have dropped — making article audio conversion practical for any publisher.
Readers want to consume content in screen-free moments: commuting, exercising, cooking. Text-only media miss these touchpoints entirely. Adding a listening experience lets your articles reach audiences during time they already have, but can’t use their eyes.
Deployed across 30+ media sites, PUBVOICE has delivered measurable improvements:
The most surprising finding: repeat visitors shift from “arriving via search” to “coming back to listen.” The delivery channel changes the relationship quality between your content and its audience.
PUBVOICE doesn’t simply read your article text aloud. The AI understands article structure — headings, bullet points, tables — and automatically rewrites scripts for natural listening. This means proper pacing, contextual transitions, and natural intonation that holds listener attention through completion.
Voice clone technology is also available: editors can use their own voice to deliver articles, creating a personal connection that text alone cannot achieve. Listeners recognize the writer’s voice and develop familiarity with your brand.
[pubvoice] shortcode for manual placementBeta special: During the beta period, Basic plan features are available completely free. Start at pub-voice.com.
This plugin connects to the PUBVOICE service (operated by Media Leap Inc.) to deliver and play AI-generated audio for your articles. The service is required for the plugin’s core functionality. An account is required to use this plugin (a free plan is available at https://pub-voice.com/en).
This service provides AI text-to-speech audio generation and playback for WordPress articles. It is the core of the plugin.
api.pub-voice.com/api/connect-source): POST request containing your Content Source ID. Sent only when an administrator clicks the “Verify Domain” button on the settings page.api.pub-voice.com/api/public/audio-info): GET request containing the article URL. Sent on the front-end when a post with the audio player is loaded (results are cached locally for up to 1 day).This service provides the player SDK script that renders and controls the audio player on the front-end.
sdk.pub-voice.com on the front-end of posts where the audio player is displayed. The current article URL is sent to the SDK at runtime to retrieve the corresponding audio data.This plugin ships its complete source code in the distribution package, including the human-readable JavaScript and CSS source files for the Gutenberg block (under src/block/). These source files are the inputs used to generate the compiled assets in the build/ directory.
To regenerate the build/ assets from source:
npm install
npm run build
The package.json file shipped with the plugin documents the build toolchain (@wordpress/scripts) and the exact build command. The block source files include:
src/block/index.js — Block registration entry pointsrc/block/edit.js — Block editor componentsrc/block/save.js — Block save callbacksrc/block/block.json — Block metadatasrc/block/editor.css / src/block/style.css — Block styles