WP Speech Contents

WP Speech Contents Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 918 downloads
WP Speech Contents Icon

Try plugin: WP Speech Contents

We'll create fresh WordPress site with WP Speech Contents installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About WP Speech Contents

Displays a button to speech the content.

0


0


0


0


0

updated: 7 years ago
since: 7 years ago
author: kt_shin1

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';
});