Plugin info

Total downloads: 1,347
Active installs: 30
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 9/13/2017 (3030 days ago)
Added to WordPress: 9/13/2017 (8 years old)
Minimum WordPress version: 4.8
Tested up to WordPress version: 4.8.27
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3030 days ago

20/100

Is WP Speech Contents abandoned?

Possibly abandoned (last update 3030 days ago).

Compatibility

Requires WordPress: 4.8
Tested up to: 4.8.27
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WebSpeechAPI for WP
Rating 0.0/5 (0 reviews)Active installs 40

Description

Displays a button to speech the content.
Single page only
Web Speech API compatible browser only

Web Speech API Browser compatibility.

Example

You can change the display position with a filter hook.

add_filter( 'wp-speech-contents_mode', function () {
    return 'bottom'; // top or bottom
});

You can change the content to be read out with the filter hook.

add_filter( 'wp-speech-contents_content', function ( $content ) {
    $content = preg_replace('/\pS/u','',$content); // Delete symbols etc.
    $content = 'Speech starts!.'.$content; // First "Speech starts!"
    return $content;
});

You can Setting the language to be read out with the filter hook.

add_filter( 'wp-speech-contents_language', function ( ) {
    return 'ja-JP';
});

Installation

  1. Upload the wp-speech-contents folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the Plugins menu in WordPress.

Frequently Asked Questions

Installation Instructions

  1. Upload the wp-speech-contents folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the Plugins menu in WordPress.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.3.2

  • Bug fix : Not stop when reloading the page.

0.3.1

  • Added filter hook which can change language.

0.3

  • Added filter hook which can change content.

0.2

  • Added filter hook which can change position.

0.1

  • first release.