Plugin Directory

Changeset 2100402


Ignore:
Timestamp:
06/04/2019 12:34:38 PM (6 years ago)
Author:
Cople
Message:

Add support for Front-end editors

Location:
tinymce-smiley-button/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tinymce-smiley-button/trunk/readme.txt

    r1989976 r2100402  
    33Tags: smiley, smilies, emoji, emoticon, emoticons, TinyMCE, editor
    44Requires at least: 4.2
    5 Tested up to: 5.0
    6 Stable tag: 1.0.6
     5Tested up to: 5.2.1
     6Stable tag: 1.0.7
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717
    18181. Upload the folder `tinymce-smiley-button` to the `/wp-content/plugins/` directory
    19 1. Activate the plugin through the 'Plugins' menu in WordPress
    20 1. That's all :)
     192. Activate the plugin through the 'Plugins' menu in WordPress
     203. That's all :)
    2121
    2222== Screenshots ==
     
    2525
    2626== Changelog ==
     27
     28= 1.0.7 =
     29* Add support for Front-end editors
    2730
    2831= 1.0.6 =
  • tinymce-smiley-button/trunk/tinymce-smiley-button.php

    r1990312 r2100402  
    44 * Plugin URI: http://wordpress.org/extend/plugins/tinymce-smiley-button/
    55 * Description: Add Smiley Button to TinyMCE.
    6  * Version: 1.0.6
     6 * Version: 1.0.7
    77 * Author: Cople
    88 * Author URI: https://c7sky.com/
    99 */
    1010
    11 function mce_smiley_button($buttons) { 
     11function mce_smiley_button($buttons) {
    1212    array_push($buttons, 'smiley');
    1313    return $buttons;
     
    2222
    2323function 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__));
    2525}
    2626add_action( 'admin_enqueue_scripts', 'mce_smiley_css' );
     27add_action( 'wp_enqueue_scripts', 'mce_smiley_css' );
    2728
    2829function mce_smiley_settings($settings) {
Note: See TracChangeset for help on using the changeset viewer.