Version Description
- Changed the name of the widget to "Rich text" and the description to a less "techy" text (thanks /u/actionscripted on Reddit http://tinyurl.com/lnm99yj) for a UI more similar to the core widgets
- Tested in WP 3.6
Download this release
Release Info
Developer | feedmeastraycat |
Plugin | WP Editor Widget |
Version | 0.3.0 |
Comparing to | |
See all releases |
Code changes from version 0.2.1 to 0.3.0
- readme.txt +10 -6
- wp-editor-widget.php +4 -4
readme.txt
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
=== WP Editor Widget ===
|
2 |
Contributors: feedmeastraycat
|
3 |
-
Tags: widget, wysiwyg, editor
|
4 |
Requires at least: 3.5.1
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 0.
|
7 |
License: MIT
|
8 |
|
9 |
-
WP Editor Widget adds a
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
This plugin adds a
|
14 |
-
adding a custom post type for each widget.
|
15 |
|
16 |
== Screenshots ==
|
17 |
|
@@ -30,6 +30,10 @@ adding a custom post type for each widget.
|
|
30 |
|
31 |
== Changelog ==
|
32 |
|
|
|
|
|
|
|
|
|
33 |
= 0.2.1 =
|
34 |
* CSS bug fix for hide button on WYSIWYG overlay
|
35 |
* JS bug fix on get and set wpeditor content
|
1 |
=== WP Editor Widget ===
|
2 |
Contributors: feedmeastraycat
|
3 |
+
Tags: widget, wysiwyg, editor, rich text
|
4 |
Requires at least: 3.5.1
|
5 |
+
Tested up to: 3.6
|
6 |
+
Stable tag: 0.3.0
|
7 |
License: MIT
|
8 |
|
9 |
+
WP Editor Widget adds a rich text widget where the content is edited using the standard WordPress visual editor.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
This plugin adds a rich text widget where the content is edited using the standard WordPress visual editor which most users already are familiar with.
|
14 |
+
It uses the WP core function wp_editor() without adding a custom post type post for each widget making the widget quicker and simpler to edit.
|
15 |
|
16 |
== Screenshots ==
|
17 |
|
30 |
|
31 |
== Changelog ==
|
32 |
|
33 |
+
= 0.3.0 =
|
34 |
+
* Changed the name of the widget to "Rich text" and the description to a less "techy" text (thanks /u/actionscripted on Reddit http://tinyurl.com/lnm99yj) for a UI more similar to the core widgets
|
35 |
+
* Tested in WP 3.6
|
36 |
+
|
37 |
= 0.2.1 =
|
38 |
* CSS bug fix for hide button on WYSIWYG overlay
|
39 |
* JS bug fix on get and set wpeditor content
|
wp-editor-widget.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Editor Widget
|
|
4 |
Plugin URI: http://oddalice.com/
|
5 |
Description: WP Editor Widget adds a WYSIWYG widget using the wp_editor().
|
6 |
Author: David Mårtensson, Odd Alice
|
7 |
-
Version: 0.
|
8 |
Author URI: http://www.feedmeastraycat.net/
|
9 |
*/
|
10 |
|
@@ -27,7 +27,7 @@ class WPEditorWidget
|
|
27 |
/**
|
28 |
* @var string
|
29 |
*/
|
30 |
-
const VERSION = "0.
|
31 |
|
32 |
/**
|
33 |
* @var string
|
@@ -102,8 +102,8 @@ class WP_Editor_Widget extends WP_Widget
|
|
102 |
public function __construct() {
|
103 |
parent::__construct(
|
104 |
'wp_editor_widget',
|
105 |
-
__('
|
106 |
-
array('description' => __('
|
107 |
);
|
108 |
}
|
109 |
|
4 |
Plugin URI: http://oddalice.com/
|
5 |
Description: WP Editor Widget adds a WYSIWYG widget using the wp_editor().
|
6 |
Author: David Mårtensson, Odd Alice
|
7 |
+
Version: 0.3.0
|
8 |
Author URI: http://www.feedmeastraycat.net/
|
9 |
*/
|
10 |
|
27 |
/**
|
28 |
* @var string
|
29 |
*/
|
30 |
+
const VERSION = "0.3.0";
|
31 |
|
32 |
/**
|
33 |
* @var string
|
102 |
public function __construct() {
|
103 |
parent::__construct(
|
104 |
'wp_editor_widget',
|
105 |
+
__('Rich text', WPEditorWidget::TEXTDOMAIN),
|
106 |
+
array('description' => __('Arbitrary text, HTML or rich text through the standard WordPress visual editor.', WPEditorWidget::TEXTDOMAIN))
|
107 |
);
|
108 |
}
|
109 |
|