Version Description
- the_title filter fix
Download this release
Release Info
Developer | comprock |
Plugin | Testimonials Widget |
Version | 0.2.12 |
Comparing to | |
See all releases |
Code changes from version 0.2.11 to 0.2.12
- readme.txt +4 -1
- testimonials-widget-widget.php +1 -1
- testimonials-widget.php +1 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://typo3vagabond.com/about-typo3-vagabond/donate/
|
|
4 |
Tags: testimonial, testimonials, quote, quotes, quotations, random quote, sidebar, widget
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
-
Stable tag: 0.2.
|
8 |
|
9 |
Testimonials widget plugin allows you display testimonials in a widget on your WordPress blog.
|
10 |
|
@@ -170,6 +170,9 @@ Change the value of the variable `$testimonialswidget_admin_userlevel` on line 3
|
|
170 |
= trunk =
|
171 |
-
|
172 |
|
|
|
|
|
|
|
173 |
= 0.2.11 =
|
174 |
* Enable character limit for shortcode
|
175 |
|
4 |
Tags: testimonial, testimonials, quote, quotes, quotations, random quote, sidebar, widget
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
+
Stable tag: 0.2.12
|
8 |
|
9 |
Testimonials widget plugin allows you display testimonials in a widget on your WordPress blog.
|
10 |
|
170 |
= trunk =
|
171 |
-
|
172 |
|
173 |
+
= 0.2.12 =
|
174 |
+
* the_title filter fix
|
175 |
+
|
176 |
= 0.2.11 =
|
177 |
* Enable character limit for shortcode
|
178 |
|
testimonials-widget-widget.php
CHANGED
@@ -37,7 +37,7 @@ class testimonials_widget extends WP_Widget {
|
|
37 |
extract( $args );
|
38 |
|
39 |
/* Our variables from the widget settings. */
|
40 |
-
$title = apply_filters('the_title', $instance['title']);
|
41 |
|
42 |
$testimonials = testimonialswidget_display_testimonials( $instance, $this->number );
|
43 |
|
37 |
extract( $args );
|
38 |
|
39 |
/* Our variables from the widget settings. */
|
40 |
+
$title = apply_filters('the_title', $instance['title'], null);
|
41 |
|
42 |
$testimonials = testimonialswidget_display_testimonials( $instance, $this->number );
|
43 |
|
testimonials-widget.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Testimonials Widget
|
4 |
Description: Testimonial widget plugin helps you display testimonials in a sidebar on your WordPress blog.
|
5 |
-
Version: 0.2.
|
6 |
Author: Michael Cannon
|
7 |
Author URI: http://typo3vagabond.com/about-typo3-vagabond/hire-michael/
|
8 |
License: GPL2
|
2 |
/*
|
3 |
Plugin Name: Testimonials Widget
|
4 |
Description: Testimonial widget plugin helps you display testimonials in a sidebar on your WordPress blog.
|
5 |
+
Version: 0.2.12
|
6 |
Author: Michael Cannon
|
7 |
Author URI: http://typo3vagabond.com/about-typo3-vagabond/hire-michael/
|
8 |
License: GPL2
|