Widget Content Blocks - Version 2.3.2

Version Description

  • November 8, 2013 =
  • Improved: When show_title is false, (empty) title tags will not be displayed.
Download this release

Release Info

Developer DvanKooten
Plugin Icon wp plugin Widget Content Blocks
Version 2.3.2
Comparing to
See all releases

Code changes from version 2.3.1 to 2.3.2

includes/WYSIWYG_Widgets_Widget.php CHANGED
@@ -44,7 +44,7 @@ class WYSIWYG_Widgets_Widget extends WP_Widget
44
  ?>
45
 
46
  <!-- Widget by WYSIWYG Widgets v<?php echo WYWI_VERSION_NUMBER ?> - http://wordpress.org/plugins/wysiwyg-widgets/ -->
47
- <?php echo $before_title . $title . $after_title; ?>
48
  <?php echo $content; ?>
49
  <!-- / WYSIWYG Widgets -->
50
 
44
  ?>
45
 
46
  <!-- Widget by WYSIWYG Widgets v<?php echo WYWI_VERSION_NUMBER ?> - http://wordpress.org/plugins/wysiwyg-widgets/ -->
47
+ <?php if($show_title) { echo $before_title . $title . $after_title; } ?>
48
  <?php echo $content; ?>
49
  <!-- / WYSIWYG Widgets -->
50
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://dannyvankooten.com/donate/
4
  Tags: visual,tinymce,fckeditor,widget,widgets,rich text,wysiwyg,image widget,visual editor,html
5
  Requires at least: 3.1
6
  Tested up to: 3.7.1
7
- Stable tag: 2.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -78,6 +78,9 @@ Yes, totally. Donations are appreciated though!
78
 
79
  == Changelog ==
80
 
 
 
 
81
  = 2.3.1 - November 6, 2013 =
82
  * Added: Spanish translations, thanks to [Maria Ramos from WebHostingHub](http://www.webhostinghub.com/)
83
  * Improved: Minor security and license improvements
4
  Tags: visual,tinymce,fckeditor,widget,widgets,rich text,wysiwyg,image widget,visual editor,html
5
  Requires at least: 3.1
6
  Tested up to: 3.7.1
7
+ Stable tag: 2.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
78
 
79
  == Changelog ==
80
 
81
+ = 2.3.2 - November 8, 2013 =
82
+ * Improved: When `show_title` is false, (empty) title tags will not be displayed.
83
+
84
  = 2.3.1 - November 6, 2013 =
85
  * Added: Spanish translations, thanks to [Maria Ramos from WebHostingHub](http://www.webhostinghub.com/)
86
  * Improved: Minor security and license improvements
wysiwyg-widgets.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WYSIWYG Widgets
4
  Plugin URI: http://DannyvanKooten.com/wordpress-plugins/wysiwyg-widgets/
5
  Description: Adds a WYSIWYG Widget with a rich text editor and media upload functions.
6
- Version: 2.3.1
7
  Author: Danny van Kooten
8
  Author URI: http://DannyvanKooten.com
9
  Text Domain: wysiwyg-widgets
@@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
30
 
31
  if ( ! defined( 'ABSPATH' ) ) exit;
32
 
33
- define("WYWI_VERSION_NUMBER", "2.3.1");
34
  define("WYWI_PLUGIN_DIR", plugin_dir_path(__FILE__));
35
 
36
  require_once WYWI_PLUGIN_DIR . 'includes/WYSIWYG_Widgets.php';
3
  Plugin Name: WYSIWYG Widgets
4
  Plugin URI: http://DannyvanKooten.com/wordpress-plugins/wysiwyg-widgets/
5
  Description: Adds a WYSIWYG Widget with a rich text editor and media upload functions.
6
+ Version: 2.3.2
7
  Author: Danny van Kooten
8
  Author URI: http://DannyvanKooten.com
9
  Text Domain: wysiwyg-widgets
30
 
31
  if ( ! defined( 'ABSPATH' ) ) exit;
32
 
33
+ define("WYWI_VERSION_NUMBER", "2.3.2");
34
  define("WYWI_PLUGIN_DIR", plugin_dir_path(__FILE__));
35
 
36
  require_once WYWI_PLUGIN_DIR . 'includes/WYSIWYG_Widgets.php';