| 开发者 |
hasanazizul
atlasaidev freemius |
|---|---|
| 更新时间 | 2026年3月13日 14:32 |
| 捐献地址: | 去捐款 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv3 or later |
| 版权网址: | 版权信息 |
SUPPORT AND HAVE QUESTIONS?
Who Is This For?
- Contact Us — We usually reply within 1 hour.
[atlasvoice] shortcode to any post, page, or widget to place an audio player exactly where you want it.code, blockquote, figcaption). Separate multiple tags with the pipe symbol (|).tta_pro/v1) for programmatic audio generation. Priority live support within 1 hour.[atlasvoice] shortcode to add the audio player anywhere:
[atlasvoice] — Basic player.
[atlasvoice listen_text="Listen" pause_text="Pause" resume_text="Resume" replay_text="Replay"] — Custom button text.
[atlasvoice text_to_read="Welcome to our website."] — Custom text to read.
[atlasvoice class="my-custom-player"] — Add CSS class.
[atlasvoice lang="en-GB" voice="Google UK English"] — Change language and voice.
[atlasvoice id="42"] — Read a specific post by ID.
[atlasvoice]This content will be read aloud.[/atlasvoice] — Container tag.
Get Started Today!
Boost engagement, accessibility, and SEO on your WordPress and WooCommerce site with AtlasVoice Text To Speech. Meet WCAG 2.1 accessibility standards, increase time-on-page, reduce bounce rate, and cater to a global audience in 51+ languages.
Try AtlasVoice Pro for premium AI voices, bulk MP3 generation, cloud storage backup, advanced analytics, and priority support.
CHECK OUT OUR OTHER PLUGINS:
- Augmented Reality and 3D Model Viewer for WordPress and WooCommerce – AR VR Try-On – Turn your WooCommerce store into an immersive 3D experience. Let customers explore products in detail using interactive 3D viewers and Augmented Reality (AR) on both iOS and Android — no apps needed.
- AI Workflow Automation – MCP – AI-powered WordPress hub with 70+ abilities, built-in MCP server, role-based access control, JWT auth, workflow builder, and WooCommerce support.
Yes, Text To Speech supports all Android phones. The free version uses the browser's speechSynthesis API, which varies by browser and device. Voices and languages may differ depending on the browser used. The Pro version eliminates this limitation by using server-side AI voice providers (Google Cloud, OpenAI, ElevenLabs), delivering consistent, high-quality audio across all devices and browsers.
The Pro version supports 51+ languages with premium AI voices. Google Cloud TTS supports 90+ languages, and ElevenLabs offers multilingual voice models. The free version supports languages available through your browser's speech synthesis engine.
Yes! AtlasVoice works on all WooCommerce pages — product pages, shop pages, and any page with WooCommerce content. Product descriptions, custom fields (via ACF), and any visible text can be converted to audio. Bulk MP3 generation also works for WooCommerce products.
Google Cloud Text To Speech is Google's premium AI voice service offering 300+ voices across 90+ languages, including Neural2 and WaveNet voice types. To set it up: (1) Create a Google Cloud account, (2) Enable the Text-to-Speech API, (3) Create a service account and download the JSON key file, (4) Upload the JSON file in AtlasVoice > Integration > Google Cloud TTS. Google Cloud TTS is a paid service — you will be billed by Google based on the number of characters processed.
OpenAI Text To Speech offers natural-sounding AI voices powered by the same technology behind ChatGPT. Choose from 6 voices (Alloy, Echo, Fable, Nova, Onyx, Shimmer) with Standard (tts-1) or HD (tts-1-hd) quality. To set it up: (1) Create an OpenAI account, (2) Generate an API key, (3) Enter the API key in AtlasVoice > Integration > ChatGPT TTS. OpenAI TTS is a paid service — you will be billed by OpenAI based on usage.
ElevenLabs offers the most realistic AI voices available, with human-like intonation, emotion, and expression. Access 100+ premium voices with fine-tuning controls for stability, similarity boost, style exaggeration, and speed. To set it up: (1) Create an ElevenLabs account, (2) Get your API key from your profile, (3) Enter the API key in AtlasVoice > Integration > ElevenLabs TTS. ElevenLabs TTS is a paid service — you will be billed by ElevenLabs based on character usage.
Yes! The Google Cloud Storage backup feature works with all TTS providers — Google Cloud TTS, ChatGPT TTS, AtlasVoice TTS Pro, and ElevenLabs TTS. Even if you use ElevenLabs for voice generation, you can store the MP3 files in Google Cloud Storage. You need to configure a Google Cloud service account JSON file with Storage Admin permissions from the Integration menu.
Yes! Audio content improves SEO in several ways: (1) Increased dwell time — visitors stay longer on pages with audio, which is a positive Google ranking signal. (2) Reduced bounce rate — audio engagement keeps users on your site. (3) Audio Schema markup (Pro) — AtlasVoice generates JSON-LD structured data that helps search engines understand your audio content, potentially enabling rich results in Google Search. (4) Accessibility compliance — Google increasingly favors accessible websites in its rankings.
AtlasVoice helps your website meet WCAG 2.1 (Web Content Accessibility Guidelines) and ADA (Americans with Disabilities Act) requirements by providing audio alternatives to text content. This is a key component of web accessibility, especially for users with visual impairments, dyslexia, or cognitive disabilities.
The voice and language settings from the Listening menu apply globally. However, you can override the voice and language for individual posts using the shortcode: [atlasvoice lang="en-GB" voice="Google UK English"]. This gives you the flexibility to use different voices for different content.
Yes, the Pro version fully supports WPML, TranslatePress, and GTranslate. The audio player automatically detects language changes and adjusts the voice accordingly.
Yes, both the free and Pro version support custom post types. The plugin integrates with ACF (Advanced Custom Fields), Custom Post Type UI, and Toolset Types.
You have several options: (1) Enable "Read Content from DOM" in Settings — this reads content directly from the page, capturing dynamically generated content. (2) Add CSS Selectors (Pro) — target specific elements to include in playback. (3) Use filters — add content programmatically via the tta__content_description filter. (4) Use the shortcode — wrap specific content with [atlasvoice]Your content here[/atlasvoice].
Yes! In the Pro version: (1) Go to Settings > Exclude Texts To Speak to exclude specific words or phrases (separate with pipe |). (2) Go to Settings > Exclude Tag's Content to skip content inside specific HTML tags like code or blockquote (separate with pipe |). (3) Exclude by post ID, category, or tag for broader content control.
Open the Gutenberg block editor, search for the "Customize Button" block, add it to your content, and customize the appearance (color, background, width, CSS).
Method 1 — Shortcode: [atlasvoice listen_text="Listen" pause_text="Pause" resume_text="Resume" replay_text="Replay"]
Method 2 — Filter (overrides shortcode):
add_filter('tta__button_text_arr', 'tta__button_text_arr_callback'); function tta__button_text_arr_callback($text_arr) { return [ 'listen_text' => 'Listen', 'pause_text' => 'Pause', 'resume_text' => 'Resume', 'replay_text' => 'Replay', 'listen_hover_title' => 'Click to listen', 'pause_hover_title' => 'Click to pause', 'resume_hover_title' => 'Click to resume', 'replay_hover_title' => 'Click to replay', ]; }
Go to the Customization menu in the plugin dashboard to adjust button background color, text color, hover effects, and border radius. You can also customize these via the Gutenberg "Customize Button" block.
Use the lang and voice attributes: [atlasvoice lang="en-GB" voice="Google UK English"]
Please report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist with verification, CVE assignment, and notify the developers.
[atlasvoice id='post_id'].
Added : Audio Schema markup for pro version (SEO).
Added : Read Content from DOM feature. (Pro)
2.1.0 ( 13 Jan 2026 )
Improved : Integration menu UI improved.
Improved : Customization menu UI improved.
Improved : Listening menu UI improved.
2.0.1 ( 28 December 2025 )
Notice added : Translation help notice.
Notice added : Holiday deal notice.
2.0.0 ( 13 December 2025 )
Introduced : Complete new UI introduced.
1.9.36 ( 12 December 2025 )
Fixed : Player disappearance issue solved.
1.9.35 ( 11 December 2025 )
Fixed : Voice missing issue. (Free)
Compatible : Avada, Divi, WPBakery theme compatibility added.
Fixed : Long sentence issue fixed. (Pro)
Support : PHP 7.4 support.
Fixed : Player duplication issue fixed. (Pro)
1.9.34 ( 7 December 2025 )
Fixed : Notice issue fixed.
Checked : WordPress 6.9 tested.
1.9.33 ( 27 November 2025 )
Removed : Plugin compatible notice removed.
Added : Black Friday promotion banner.
1.9.32 ( 21 November 2025 )
Added : Device information tracing added.
Improved : Analytics UI improved.
Fixed : Unnecessary content wrapper removed.
1.9.31 ( 12 November 2025 )
Fixed : Security issue fixed by Patchstack.
1.9.30 ( 10 November 2025 )
Improved : Backup MP3 file text improved.
Removed : Unnecessary code removed.
1.9.29 ( 04 November 2025 )
Fixed : MP3 player duplicate issue solved.
Fixed : Analytics data tracking on Firefox and Safari browsers.
1.9.28 ( 28 October 2025 )
Added : Search analytics by post ID on analytics menu. (Free)
Added : Search analytics by date range on analytics menu. (Pro)
1.9.27 ( 21 October 2025 )
Added : Voice and language missing in free version notice added.
Fixed : MP3 file name mismatch issue fixed. (Pro)
1.9.26 ( 14 October 2025 )
Added : When MP3 file name is empty, post ID will be used as file name.
1.9.25 ( 01 October 2025 )
Fixed : Custom CSS not working issue fixed.
1.9.24 ( 25 September 2025 )
Added : Default Player hover text color change option added.
Fixed : Minor bug fixed related to default player.
1.9.21 ( 20 September 2025 )
Removed : Unnecessary code removed.
Added : Notice added for SpeechSynthesis API.
1.9.20 ( 13 September 2025 )
Fixed : MP3 file existence check function issue fixed.
Fixed : Player adding function call multiple times issue fixed.
Fixed : Shortcode position update issue fixed.
Fixed : Edit page console error fixed.
1.9.19 ( 11 September 2025 )
Improved : Shortcode functionality improved.
Updated : Documentation updated.
1.9.18 ( 04 September 2025 )
Fixed : Player select issue solved.
1.9.17 ( 31 August 2025 )
Removed : Unnecessary code removed.
1.9.16 ( 28 August 2025 )
Fixed : Pro version GTranslate translation issue fixed.
Fixed : Google Cloud Text To Speech voice issue on Listening menu fixed.
Updated : Google Cloud Text To Speech, Cloud Storage, Protobuf package updated.
Improved : Performance improved.
Updated : Freemius version update.
1.9.15 ( 21 August 2025 )
Fixed : Post excerpt issue solved.
Improved : Performance improved.
1.9.14 ( 18 August 2025 )
Fixed : Google Cloud Text To Speech voice and language issue solved.
Fixed : Shortcode not working issue solved.
1.9.13 ( 17 August 2025 )
Fixed : Google Cloud Backup issue solved.
Added : UI added to create Google Cloud Storage Bucket Name.
Renamed : "Google TTS Pro" player renamed to "AtlasVoice TTS Pro".
Fixed : Edit page console error fixed.
Improved : Performance improved.
1.9.12 ( 13 August 2025 )
Fixed : Missing categories issue fixed.
Fixed : Missing tags issue fixed.
Fixed : Missing post type issue fixed.
Fixed : Missing post status issue fixed.
Added : Custom listeners added during MP3 file download.
1.9.11 ( 08 August 2025 )
Fixed : Customization menu player demo issue fixed.
1.9.10 ( 05 August 2025 )
Improved : Player loading performance improved.
Fixed : UI related bug fixed.
1.9.9 ( 31 July 2025 )
Fixed : Post edit page category height issue fixed.
Fixed : Player not working on mobile or tablet issue fixed.
Improved : Pro version performance improved.
1.9.8 ( 27 July 2025 )
Improved : Settings page UI functionality and readability improved.
Added : "Continue Reading After Switching To Another Tab" settings option introduced.
1.9.7 ( 22 July 2025 )
Fixed : API related bug fixed.
1.9.6 ( 21 July 2025 )
Improved : Player UI improved.
1.9.5 ( 17 July 2025 )
Improved : UI improvement.
Fixed : Bug fixed.
Added : How to install text to speech plugin? video added.
1.9.4 ( 15 July 2025 )
Fixed : Dynamic voice selection issue fixed.
1.9.3 ( 15 July 2025 )
Fixed : Start playing issue solved.
Fixed : Other languages (Italian, etc.) issue fixed.
1.9.2 ( 09 July 2025 )
Changed : Analytics enable default value changed.
1.9.1 ( 03 July 2025 )
Fixed : Minor changes.
1.9.0 ( 17 June 2025 )
Improved : Performance improved.
Removed : Unnecessary code removed.
Fixed : Minor bug fixed.
1.8.31 ( 13 June 2025 )
Fixed : Listening voice saving issue solved.
Added : Augmented Reality plugin introduced.
1.8.30 ( 01 June 2025 )
Added : Text before content option added.
Added : Text after content option added.
1.8.29 ( 28 May 2025 )
Improved : MP3 file loading improved.
Added : tts_pro_change_post_by_force action added.
1.8.28 ( 21 May 2025 )
Added : Player margin adding UI added to the Customization menu.
1.8.27 ( 15 May 2025 )
Added : Post excerpt adding UI included in Settings page.
1.8.26 ( 12 May 2025 )
Added : Google Cloud Text To Speech demo audio added.
Added : ChatGPT Text To Speech demo audio added.
1.8.25 ( 08 May 2025 )
Added : Bengali, Urdu, Portuguese (Portugal) languages added to pro version.
1.8.24 ( 06 May 2025 )
Added : Post title add/remove UI added to Settings page.
1.8.23 ( 29 April 2025 )
Fixed : MP3 file generate and delete issue solved.
1.8.22 ( 24 April 2025 )
Fixed : Content not reading in English issue solved.
1.8.21 ( 14 April 2025 )
Fixed : GTranslate pro version support given.
Fixed : MP3 filename uniqueness when title is removed by filter.
Fixed : "Who Can Download MP3 File" permission issue.
1.8.20 ( 08 April 2025 )
Added : WordPress 6.8 compatibility.
Removed : Unnecessary notices.
1.8.19 ( 25 Mar 2025 )
Added : Documentation update to Docs menu.
1.8.18 ( 14 Mar 2025 )
Introduced : Analytics summary added.
Fixed : API URL issue fixed.
Fixed : Analytics time issue fixed for single post.
1.8.17 ( 07 Mar 2025 )
Introduced : Manual MP3 file upload.
Fixed : GTranslate plugin selector issue solved.
Added : ttsProLink filter added.
Added : Pro version MP3 file loader text translation system added.
Fixed : Minor bug fixed.
1.8.16 ( 26 Feb 2025 )
Fixed : Speed option hidden on Listening menu.
Fixed : MP3 file generating issue fixed.
Fixed : Bulk MP3 file generation with Google Cloud TTS issue fixed.
Added : Compatibility with Yoast Duplicate Post, Duplicate Post, Duplicate Page.
1.8.15 ( 13 Feb 2025 )
Updated : Documentation updated on Docs menu.
1.8.14 ( 12 Feb 2025 )
Fixed : Error issue fixed.
1.8.13 ( 10 Feb 2025 )
Added : Display player based on date range in pro version.
1.8.12 ( 27 Jan 2025 )
Updated : Freemius version updated.
1.8.11 ( 26 Jan 2025 )
Fixed : Default Player default value issue solved.
Fixed : Pro version MP3 file load issue solved.
Fixed : Default player voice pitch issue solved.
Fixed : GTranslate plugin allowed language issue solved.
Added : ttsSetSelectedLanguageFromDom JS filter added.
Fixed : Generate Bulk MP3 page font family issue solved.
1.8.10 ( 16 Jan 2025 )
Fixed : ACF/ACF Pro plugin compatibility issue solved.
1.8.9 ( 15 Jan 2025 )
Added : Border radius for Default Player added.
Improved : Pro version features list UI improved.
Improved : Customization menu design section UI improved.
Fixed : Block CSS and dashboard CSS combination issue solved.
Fixed : Plugins page documentation URL issue fixed.
1.8.8 ( 11 Jan 2025 )
Fixed : Tagging version issue fixed.
1.8.7 ( 10 Jan 2025 )
Improved : Default player design improved.
1.8.6 ( 07 Jan 2025 )
Fixed : Font family issue fixed.
1.8.5 ( 05 Jan 2025 )
Fixed : Customize Button block issue fixed.
Improved : Bulk MP3 feature improved.
Removed : Unnecessary code removed.
1.8.4 ( 19 Dec 2024 )
Fixed : Autoload issue fixed.
Fixed : Absolute positioning issue fixed.
1.8.3 ( 19 Dec 2024 )
Fixed : Pro version notice issue fixed.
1.8.2 ( 19 Dec 2024 )
Improved : Pro and free version performance improved.
Improved : Dashboard documentation link improved.
Improved : Pro version player scroll issue with Elementor solved.
1.8.1 ( 08 Dec 2024 )
Fixed : Emergency bug fix.
Fixed : Pro license activation issue solved.
1.8.0 ( 08 Dec 2024 )
Removed : Unnecessary code removed.
Fixed : Pro version license activation issue solved.
Improved : Pro and free version performance improved.