Version Description
Download this release
Release Info
Developer | bradyvercher |
Plugin | Simple Image Widget |
Version | 4.4.2 |
Comparing to | |
See all releases |
Code changes from version 4.4.1 to 4.4.2
- includes/class-simple-image-widget.php +1 -1
- readme.txt +7 -4
- simple-image-widget.php +5 -5
includes/class-simple-image-widget.php
CHANGED
@@ -40,7 +40,7 @@ class Simple_Image_Widget extends WP_Widget {
|
|
40 |
*/
|
41 |
public function __construct( $id_base = false, $name = false, $widget_options = array(), $control_options = array() ) {
|
42 |
$id_base = ( $id_base ) ? $id_base : 'simpleimage'; // Legacy ID.
|
43 |
-
$name = ( $name ) ? $name : __( 'Image', 'simple-image-widget' );
|
44 |
|
45 |
$widget_options = wp_parse_args(
|
46 |
$widget_options,
|
40 |
*/
|
41 |
public function __construct( $id_base = false, $name = false, $widget_options = array(), $control_options = array() ) {
|
42 |
$id_base = ( $id_base ) ? $id_base : 'simpleimage'; // Legacy ID.
|
43 |
+
$name = ( $name ) ? $name : __( 'Image (Simple)', 'simple-image-widget' );
|
44 |
|
45 |
$widget_options = wp_parse_args(
|
46 |
$widget_options,
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
|
3 |
Contributors: cedaro, bradyvercher
|
4 |
Tags: image widget, widget, media, media manager, sidebar, image, photo, picture
|
5 |
-
Requires at least: 4.
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.4.
|
8 |
License: GPL-2.0+
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -21,7 +21,7 @@ Despite its simplicity, Simple Image Widget is built with extensibility in mind,
|
|
21 |
* [Write a review](https://wordpress.org/support/view/plugin-reviews/simple-image-widget#postform)
|
22 |
* [Contribute on GitHub](https://github.com/cedaro/simple-image-widget)
|
23 |
* [Follow @cedaroco](https://twitter.com/cedaroco)
|
24 |
-
* [Visit Cedaro](
|
25 |
|
26 |
|
27 |
## Installation
|
@@ -73,6 +73,9 @@ The widget uses the core function `wp_get_attachment_image()` to display the ima
|
|
73 |
|
74 |
## Changelog
|
75 |
|
|
|
|
|
|
|
76 |
### 4.4.1 - September 6, 2016
|
77 |
* Added missing text domains.
|
78 |
|
2 |
|
3 |
Contributors: cedaro, bradyvercher
|
4 |
Tags: image widget, widget, media, media manager, sidebar, image, photo, picture
|
5 |
+
Requires at least: 4.6
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 4.4.2
|
8 |
License: GPL-2.0+
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
21 |
* [Write a review](https://wordpress.org/support/view/plugin-reviews/simple-image-widget#postform)
|
22 |
* [Contribute on GitHub](https://github.com/cedaro/simple-image-widget)
|
23 |
* [Follow @cedaroco](https://twitter.com/cedaroco)
|
24 |
+
* [Visit Cedaro](https://www.cedaro.com/?utm_source=wordpress.org&utm_medium=link&utm_content=simple-image-widget-readme&utm_campaign=plugins)
|
25 |
|
26 |
|
27 |
## Installation
|
73 |
|
74 |
## Changelog
|
75 |
|
76 |
+
### 4.4.2 - October 12, 2017
|
77 |
+
* Changed the widget name to "Image (Simple)" to differentiate it from the core image widget introduced in WordPress 4.8.
|
78 |
+
|
79 |
### 4.4.1 - September 6, 2016
|
80 |
* Added missing text domains.
|
81 |
|
simple-image-widget.php
CHANGED
@@ -9,12 +9,12 @@
|
|
9 |
*
|
10 |
* @wordpress-plugin
|
11 |
* Plugin Name: Simple Image Widget
|
12 |
-
* Plugin URI:
|
13 |
* Description: A simple image widget utilizing the new WordPress media manager.
|
14 |
-
* Version:
|
15 |
-
* Author:
|
16 |
-
* Author URI:
|
17 |
-
* License:
|
18 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
19 |
* Text Domain: simple-image-widget
|
20 |
*/
|
9 |
*
|
10 |
* @wordpress-plugin
|
11 |
* Plugin Name: Simple Image Widget
|
12 |
+
* Plugin URI: https://wordpress.org/plugins/simple-image-widget/
|
13 |
* Description: A simple image widget utilizing the new WordPress media manager.
|
14 |
+
* Version: 4.4.2
|
15 |
+
* Author: Cedaro
|
16 |
+
* Author URI: https://www.cedaro.com/?utm_source=wordpress-plugin&utm_medium=link&utm_content=simple-image-widget-author-uri&utm_campaign=plugins
|
17 |
+
* License: GPL-2.0+
|
18 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
19 |
* Text Domain: simple-image-widget
|
20 |
*/
|