Опис
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';
});
Постављање
- Upload the
wp-speech-contentsfolder to the/wp-content/plugins/directory. - Activate the plugin through the Plugins menu in WordPress.
ЧПП
- Installation Instructions
-
- Upload the
wp-speech-contentsfolder to the/wp-content/plugins/directory. - Activate the plugin through the Plugins menu in WordPress.
- Upload the
Прегледи
Нема рецензија за овај додатак.
Сарадници и градитељи
WP Speech Contents је софтвер отвореног кода. Следећи људи су допринели овом додатку.
СараднициПреведите WP Speech Contents на свој језик.
Заинтересовани сте за градњу?
Прегледајте код, проверите SVN складиште или се пријавите на белешку градње преко RSS-а.
Белешка о изменама
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.