Changeset 2905510
- Timestamp:
- 04/28/2023 08:15:30 AM (3 years ago)
- Location:
- sitespeaker-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
sitespeaker.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sitespeaker-widget/trunk/readme.txt
r2840729 r2905510 4 4 Tags: tts, text-to-speech, widget, site-speaker, text to speech, audio, voice, text to audio, speech 5 5 Requires at least: 3.0 6 Tested up to: 6. 16 Tested up to: 6.2 7 7 Stable tag: trunk 8 8 Requires PHP: 5.2.4 -
sitespeaker-widget/trunk/sitespeaker.php
r2744867 r2905510 4 4 * Plugin URI: https://www.sitespeaker.link/wordpress-plugin/ 5 5 * Description: Speechify your website with the SiteSpeaker Text-to-Speech widget 6 * Version: 1. 46 * Version: 1.5 7 7 * Author: SiteSpeaker LLC 8 8 * Author URI: https://www.sitespeaker.com/ … … 97 97 add_action('admin_menu', 'sitespeaker_menu'); 98 98 add_action('admin_init', 'sitespeaker_admin'); 99 wp_enqueue_script('main', plugin_dir_url(__FILE__) . 'main.js', array('jquery'), '1.4', true); 99 add_action('admin_enqueue_scripts', 'sitespeaker_admin_scripts'); 100 101 function sitespeaker_admin_scripts($page) { 102 if ($page == 'settings_page_sitespeaker_settings_page') { 103 wp_enqueue_script('main', plugin_dir_url(__FILE__) . 'main.js', array('jquery'), '1.4', true); 104 } 105 }
Note: See TracChangeset
for help on using the changeset viewer.