Changeset 2100402
- Timestamp:
- 06/04/2019 12:34:38 PM (6 years ago)
- Location:
- tinymce-smiley-button/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tinymce-smiley-button/trunk/readme.txt
r1989976 r2100402 3 3 Tags: smiley, smilies, emoji, emoticon, emoticons, TinyMCE, editor 4 4 Requires at least: 4.2 5 Tested up to: 5. 06 Stable tag: 1.0. 65 Tested up to: 5.2.1 6 Stable tag: 1.0.7 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 18 18 1. Upload the folder `tinymce-smiley-button` to the `/wp-content/plugins/` directory 19 1. Activate the plugin through the 'Plugins' menu in WordPress20 1. That's all :)19 2. Activate the plugin through the 'Plugins' menu in WordPress 20 3. That's all :) 21 21 22 22 == Screenshots == … … 25 25 26 26 == Changelog == 27 28 = 1.0.7 = 29 * Add support for Front-end editors 27 30 28 31 = 1.0.6 = -
tinymce-smiley-button/trunk/tinymce-smiley-button.php
r1990312 r2100402 4 4 * Plugin URI: http://wordpress.org/extend/plugins/tinymce-smiley-button/ 5 5 * Description: Add Smiley Button to TinyMCE. 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: Cople 8 8 * Author URI: https://c7sky.com/ 9 9 */ 10 10 11 function mce_smiley_button($buttons) { 11 function mce_smiley_button($buttons) { 12 12 array_push($buttons, 'smiley'); 13 13 return $buttons; … … 22 22 23 23 function mce_smiley_css() { 24 wp_enqueue_style(' smiley', plugins_url('/plugin.css', __FILE__));24 wp_enqueue_style('tinymce-smiley-button', plugins_url('/plugin.css', __FILE__)); 25 25 } 26 26 add_action( 'admin_enqueue_scripts', 'mce_smiley_css' ); 27 add_action( 'wp_enqueue_scripts', 'mce_smiley_css' ); 27 28 28 29 function mce_smiley_settings($settings) {
Note: See TracChangeset
for help on using the changeset viewer.