Version Description
- Enable Video also means enable video embedding and display
Download this release
Release Info
Developer | comprock |
Plugin | Testimonials Widget |
Version | 2.19.6 |
Comparing to | |
See all releases |
Code changes from version 2.19.5.1 to 2.19.6
- CHANGELOG.md +4 -0
- includes/class-testimonials-widget-settings.php +7 -8
- includes/class-testimonials-widget.php +20 -9
- languages/testimonials-widget.pot +164 -164
- readme.txt +16 -8
- testimonials-widget.php +2 -2
CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2 |
|
3 |
## master
|
4 |
|
|
|
|
|
|
|
|
|
5 |
## 2.19.5.1
|
6 |
* Add tutorial videos
|
7 |
* Tested up to: 4.0.0
|
2 |
|
3 |
## master
|
4 |
|
5 |
+
## 2.19.6
|
6 |
+
* RESOLVE #92 Embed YouTube videos in reviews
|
7 |
+
* Revise readme description
|
8 |
+
|
9 |
## 2.19.5.1
|
10 |
* Add tutorial videos
|
11 |
* Tested up to: 4.0.0
|
includes/class-testimonials-widget-settings.php
CHANGED
@@ -186,14 +186,6 @@ class Testimonials_Widget_Settings extends Aihrus_Settings {
|
|
186 |
'std' => 1,
|
187 |
);
|
188 |
|
189 |
-
self::$settings['enable_video'] = array(
|
190 |
-
'section' => 'widget',
|
191 |
-
'title' => esc_html__( 'Enable Video?', 'testimonials-widget' ),
|
192 |
-
'desc' => esc_html__( 'Only enable when displaying video content.', 'testimonials-widget' ),
|
193 |
-
'type' => 'checkbox',
|
194 |
-
'validate' => 'is_true',
|
195 |
-
);
|
196 |
-
|
197 |
self::$settings['keep_whitespace'] = array(
|
198 |
'section' => 'widget',
|
199 |
'title' => esc_html__( 'Keep Whitespace?', 'testimonials-widget' ),
|
@@ -386,6 +378,13 @@ class Testimonials_Widget_Settings extends Aihrus_Settings {
|
|
386 |
'std' => 1,
|
387 |
);
|
388 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
self::$settings['do_shortcode'] = array(
|
390 |
'title' => esc_html__( 'Enable [shortcodes]?', 'testimonials-widget' ),
|
391 |
'desc' => esc_html__( 'If unchecked, shortcodes are stripped.', 'testimonials-widget' ),
|
186 |
'std' => 1,
|
187 |
);
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
self::$settings['keep_whitespace'] = array(
|
190 |
'section' => 'widget',
|
191 |
'title' => esc_html__( 'Keep Whitespace?', 'testimonials-widget' ),
|
378 |
'std' => 1,
|
379 |
);
|
380 |
|
381 |
+
self::$settings['enable_video'] = array(
|
382 |
+
'title' => esc_html__( 'Enable Video?', 'testimonials-widget' ),
|
383 |
+
'desc' => esc_html__( 'Only enable when displaying video content.', 'testimonials-widget' ),
|
384 |
+
'type' => 'checkbox',
|
385 |
+
'validate' => 'is_true',
|
386 |
+
);
|
387 |
+
|
388 |
self::$settings['do_shortcode'] = array(
|
389 |
'title' => esc_html__( 'Enable [shortcodes]?', 'testimonials-widget' ),
|
390 |
'desc' => esc_html__( 'If unchecked, shortcodes are stripped.', 'testimonials-widget' ),
|
includes/class-testimonials-widget.php
CHANGED
@@ -1053,20 +1053,25 @@ EOF;
|
|
1053 |
);
|
1054 |
|
1055 |
self::set_not_found( true );
|
1056 |
-
} else
|
1057 |
self::set_not_found();
|
|
|
1058 |
|
1059 |
$pre_paging = '';
|
1060 |
-
if ( $paging || $paging_before )
|
1061 |
$pre_paging = self::get_testimonials_paging( $atts );
|
|
|
1062 |
|
1063 |
$is_first = true;
|
1064 |
|
1065 |
$testimonial_content = '';
|
1066 |
foreach ( $testimonials as $testimonial ) {
|
1067 |
$content = self::get_testimonial_html( $testimonial, $atts, $is_list, $is_first, $widget_number );
|
1068 |
-
|
|
|
1069 |
$content = links_add_target( $content, $target );
|
|
|
|
|
1070 |
$content = apply_filters( 'testimonials_widget_testimonial_html', $content, $testimonial, $atts, $is_list, $is_first, $widget_number );
|
1071 |
$is_first = false;
|
1072 |
|
@@ -1369,6 +1374,7 @@ EOF;
|
|
1369 |
|
1370 |
$keep_whitespace = $atts['keep_whitespace'];
|
1371 |
$do_shortcode = $atts['do_shortcode'];
|
|
|
1372 |
|
1373 |
// wrap our own quote class around the content before any formatting
|
1374 |
// happens
|
@@ -1383,16 +1389,21 @@ EOF;
|
|
1383 |
$content = convert_smilies( $content );
|
1384 |
$content = convert_chars( $content );
|
1385 |
|
1386 |
-
if (
|
1387 |
-
$content =
|
1388 |
-
|
1389 |
-
$content = shortcode_unautop( $content );
|
1390 |
|
1391 |
-
if ( $do_shortcode )
|
1392 |
$content = do_shortcode( $content );
|
1393 |
-
else
|
1394 |
$content = strip_shortcodes( $content );
|
|
|
1395 |
|
|
|
|
|
|
|
|
|
|
|
1396 |
$content = str_replace( ']]>', ']]>', $content );
|
1397 |
$content = trim( $content );
|
1398 |
|
1053 |
);
|
1054 |
|
1055 |
self::set_not_found( true );
|
1056 |
+
} else {
|
1057 |
self::set_not_found();
|
1058 |
+
}
|
1059 |
|
1060 |
$pre_paging = '';
|
1061 |
+
if ( $paging || $paging_before ) {
|
1062 |
$pre_paging = self::get_testimonials_paging( $atts );
|
1063 |
+
}
|
1064 |
|
1065 |
$is_first = true;
|
1066 |
|
1067 |
$testimonial_content = '';
|
1068 |
foreach ( $testimonials as $testimonial ) {
|
1069 |
$content = self::get_testimonial_html( $testimonial, $atts, $is_list, $is_first, $widget_number );
|
1070 |
+
$content = apply_filters( 'the_content', $content );
|
1071 |
+
if ( $target ) {
|
1072 |
$content = links_add_target( $content, $target );
|
1073 |
+
}
|
1074 |
+
|
1075 |
$content = apply_filters( 'testimonials_widget_testimonial_html', $content, $testimonial, $atts, $is_list, $is_first, $widget_number );
|
1076 |
$is_first = false;
|
1077 |
|
1374 |
|
1375 |
$keep_whitespace = $atts['keep_whitespace'];
|
1376 |
$do_shortcode = $atts['do_shortcode'];
|
1377 |
+
$enable_video = $atts['enable_video'];
|
1378 |
|
1379 |
// wrap our own quote class around the content before any formatting
|
1380 |
// happens
|
1389 |
$content = convert_smilies( $content );
|
1390 |
$content = convert_chars( $content );
|
1391 |
|
1392 |
+
if ( $enable_video && ! empty( $GLOBALS['wp_embed'] ) ) {
|
1393 |
+
$content = $GLOBALS['wp_embed']->run_shortcode( $content );
|
1394 |
+
}
|
|
|
1395 |
|
1396 |
+
if ( $do_shortcode ) {
|
1397 |
$content = do_shortcode( $content );
|
1398 |
+
} else {
|
1399 |
$content = strip_shortcodes( $content );
|
1400 |
+
}
|
1401 |
|
1402 |
+
if ( is_null( $widget_number ) || $keep_whitespace ) {
|
1403 |
+
$content = wpautop( $content );
|
1404 |
+
}
|
1405 |
+
|
1406 |
+
$content = shortcode_unautop( $content );
|
1407 |
$content = str_replace( ']]>', ']]>', $content );
|
1408 |
$content = trim( $content );
|
1409 |
|
languages/testimonials-widget.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Testimonials by Aihrus package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Testimonials by Aihrus 2.19.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
|
7 |
-
"POT-Creation-Date: 2014-05-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -22,32 +22,32 @@ msgid "Settings"
|
|
22 |
msgstr ""
|
23 |
|
24 |
#: includes/class-testimonials-widget-settings.php:107
|
25 |
-
#: includes/class-testimonials-widget-settings.php:
|
26 |
msgid "General"
|
27 |
msgstr ""
|
28 |
|
29 |
#: includes/class-testimonials-widget-settings.php:108
|
30 |
-
#: includes/class-testimonials-widget-settings.php:
|
31 |
msgid "Selection"
|
32 |
msgstr ""
|
33 |
|
34 |
#: includes/class-testimonials-widget-settings.php:109
|
35 |
-
#: includes/class-testimonials-widget-settings.php:
|
36 |
msgid "Ordering"
|
37 |
msgstr ""
|
38 |
|
39 |
#: includes/class-testimonials-widget-settings.php:110
|
40 |
-
#: includes/class-testimonials-widget-settings.php:
|
41 |
msgid "Widget"
|
42 |
msgstr ""
|
43 |
|
44 |
#: includes/class-testimonials-widget-settings.php:111
|
45 |
-
#: includes/class-testimonials-widget-settings.php:
|
46 |
msgid "Post Type"
|
47 |
msgstr ""
|
48 |
|
49 |
#: includes/class-testimonials-widget-settings.php:112
|
50 |
-
#: includes/class-testimonials-widget-settings.php:
|
51 |
msgid "Columns"
|
52 |
msgstr ""
|
53 |
|
@@ -119,487 +119,487 @@ msgid "Display start and stop buttons underneath the testimonial slider."
|
|
119 |
msgstr ""
|
120 |
|
121 |
#: includes/class-testimonials-widget-settings.php:191
|
122 |
-
msgid "Enable Video?"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/class-testimonials-widget-settings.php:192
|
126 |
-
msgid "Only enable when displaying video content."
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: includes/class-testimonials-widget-settings.php:199
|
130 |
msgid "Keep Whitespace?"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/class-testimonials-widget-settings.php:
|
134 |
msgid "Keeps testimonials looking as entered than sans auto-formatting"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: includes/class-testimonials-widget-settings.php:
|
138 |
msgid "Testimonial Bottom Text"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/class-testimonials-widget-settings.php:
|
142 |
msgid "Custom text or HTML for bottom of testimonials"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: includes/class-testimonials-widget-settings.php:
|
146 |
msgid "General Options"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/class-testimonials-widget-settings.php:
|
150 |
msgid "Use bxSlider?"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/class-testimonials-widget-settings.php:
|
154 |
msgid "Prior to 2.15.0, Testimonials' used custom JavaScript for transitions."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/class-testimonials-widget-settings.php:
|
158 |
msgid "Exclude bxSlider CSS?"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/class-testimonials-widget-settings.php:
|
162 |
msgid "For a bare-bones, unthemed slider."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/class-testimonials-widget-settings.php:
|
166 |
msgid "Include IE7 CSS?"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/class-testimonials-widget-settings.php:
|
170 |
msgid "Hide built-in quotes?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/class-testimonials-widget-settings.php:
|
174 |
msgid "Remove open and close quote span tags surrounding testimonial content"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/class-testimonials-widget-settings.php:
|
178 |
msgid "Remove `.hentry` CSS?"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/class-testimonials-widget-settings.php:
|
182 |
msgid "Some themes use class `.hentry` in a manner that breaks Testimonials' CSS"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/class-testimonials-widget-settings.php:
|
186 |
msgid "Use `<q>` tag?"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/class-testimonials-widget-settings.php:
|
190 |
msgid "Not HTML5 compliant"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/class-testimonials-widget-settings.php:
|
194 |
msgid "Fields to Show"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/class-testimonials-widget-settings.php:
|
198 |
msgid "Hide Gravatar Image?"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: includes/class-testimonials-widget-settings.php:
|
202 |
-
#: includes/class-testimonials-widget-settings.php:
|
203 |
msgid "Hide Image?"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/class-testimonials-widget-settings.php:
|
207 |
msgid "Hide Image in Single View?"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/class-testimonials-widget-settings.php:
|
211 |
msgid "Hide Testimonial Content?"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-testimonials-widget-settings.php:
|
215 |
msgid "Hide Author/Source?"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-testimonials-widget-settings.php:
|
219 |
msgid "Don't display \"Post Title\" in cite"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/class-testimonials-widget-settings.php:
|
223 |
-
#: includes/class-testimonials-widget-settings.php:
|
224 |
msgid "Hide Email?"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/class-testimonials-widget-settings.php:
|
228 |
-
#: includes/class-testimonials-widget-settings.php:
|
229 |
msgid "Hide Job Title?"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-testimonials-widget-settings.php:
|
233 |
-
#: includes/class-testimonials-widget-settings.php:
|
234 |
msgid "Hide Location?"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: includes/class-testimonials-widget-settings.php:
|
238 |
-
#: includes/class-testimonials-widget-settings.php:
|
239 |
msgid "Hide Company?"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-testimonials-widget-settings.php:
|
243 |
-
#: includes/class-testimonials-widget-settings.php:
|
244 |
msgid "Hide URL?"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/class-testimonials-widget-settings.php:
|
248 |
msgid "Miscellaneous"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/class-testimonials-widget-settings.php:
|
252 |
msgid "Default Reviewed Item?"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-testimonials-widget-settings.php:
|
256 |
msgid "Name of thing being referenced in testimonials"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-testimonials-widget-settings.php:
|
260 |
msgid "Default Reviewed Item URL?"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-testimonials-widget-settings.php:
|
264 |
msgid "URL of thing being referenced in testimonials"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-testimonials-widget-settings.php:
|
268 |
msgid "Enable Paging?"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/class-testimonials-widget-settings.php:
|
272 |
msgid "For `[testimonials]`"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/class-testimonials-widget-settings.php:
|
276 |
msgid "Disable"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/class-testimonials-widget-settings.php:
|
280 |
msgid "Enable"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/class-testimonials-widget-settings.php:
|
284 |
msgid "Before testimonials"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/class-testimonials-widget-settings.php:
|
288 |
msgid "After testimonials"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/class-testimonials-widget-settings.php:
|
292 |
msgid "Adds HTML tag markup per the <a href=\"%s\">Review schema</a> to testimonials. Search engines including Bing, Google, Yahoo! and Yandex rely on this markup to improve the display of search results."
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/class-testimonials-widget-settings.php:
|
296 |
msgid "Enable Review Schema?"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/class-testimonials-widget-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
msgid "Enable [shortcodes]?"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/class-testimonials-widget-settings.php:
|
304 |
msgid "If unchecked, shortcodes are stripped."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/class-testimonials-widget-settings.php:
|
308 |
msgid "Hide \"Testimonials Not Found\"?"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/class-testimonials-widget-settings.php:
|
312 |
msgid "URL Target"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/class-testimonials-widget-settings.php:
|
316 |
msgid "Add target to all URLs; leave blank if none"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/class-testimonials-widget-settings.php:
|
320 |
msgid "Selection Options"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/class-testimonials-widget-settings.php:
|
324 |
msgid "Category Filter"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: includes/class-testimonials-widget-settings.php:
|
328 |
msgid "Comma separated category names. Ex: Category A, Another category"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: includes/class-testimonials-widget-settings.php:
|
332 |
msgid "Tags Filter"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/class-testimonials-widget-settings.php:
|
336 |
msgid "Comma separated tag names. Ex: Tag A, Another tag"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/class-testimonials-widget-settings.php:
|
340 |
msgid "Require All Tags?"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/class-testimonials-widget-settings.php:
|
344 |
msgid "Select only testimonials with all of the given tags"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/class-testimonials-widget-settings.php:
|
348 |
msgid "Include IDs Filter"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: includes/class-testimonials-widget-settings.php:
|
352 |
-
#: includes/class-testimonials-widget-settings.php:
|
353 |
msgid "Comma separated testimonial IDs. Ex: 3,1,2"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: includes/class-testimonials-widget-settings.php:
|
357 |
msgid "Exclude IDs Filter"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/class-testimonials-widget-settings.php:
|
361 |
msgid "Limit"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/class-testimonials-widget-settings.php:
|
365 |
msgid "Number of testimonials to select per instance"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/class-testimonials-widget-settings.php:
|
369 |
msgid "Ordering Options"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/class-testimonials-widget-settings.php:
|
373 |
msgid "Random Order?"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: includes/class-testimonials-widget-settings.php:
|
377 |
msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: includes/class-testimonials-widget-settings.php:
|
381 |
msgid "ORDER BY"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: includes/class-testimonials-widget-settings.php:
|
385 |
msgid "Used when \"Random Order\" is disabled"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: includes/class-testimonials-widget-settings.php:
|
389 |
msgid "Testimonial ID"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: includes/class-testimonials-widget-settings.php:
|
393 |
msgid "Author"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: includes/class-testimonials-widget-settings.php:
|
397 |
#: includes/class-testimonials-widget.php:557
|
398 |
msgid "Date"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/class-testimonials-widget-settings.php:
|
402 |
msgid "Menu Order"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: includes/class-testimonials-widget-settings.php:
|
406 |
#: includes/class-testimonials-widget.php:555
|
407 |
msgid "Source"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: includes/class-testimonials-widget-settings.php:
|
411 |
msgid "No order"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/class-testimonials-widget-settings.php:
|
415 |
msgid "ORDER BY meta_key"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/class-testimonials-widget-settings.php:
|
419 |
msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/class-testimonials-widget-settings.php:
|
423 |
msgid "None"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/class-testimonials-widget-settings.php:
|
427 |
#: includes/class-testimonials-widget.php:586
|
428 |
-
#: includes/class-testimonials-widget.php:
|
429 |
msgid "Job Title"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/class-testimonials-widget-settings.php:
|
433 |
#: includes/class-testimonials-widget.php:596
|
434 |
-
#: includes/class-testimonials-widget.php:
|
435 |
msgid "Email"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/class-testimonials-widget-settings.php:
|
439 |
#: includes/class-testimonials-widget.php:591
|
440 |
-
#: includes/class-testimonials-widget.php:
|
441 |
msgid "Location"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/class-testimonials-widget-settings.php:
|
445 |
#: includes/class-testimonials-widget.php:601
|
446 |
-
#: includes/class-testimonials-widget.php:
|
447 |
msgid "Company"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/class-testimonials-widget-settings.php:
|
451 |
#: includes/class-testimonials-widget.php:606
|
452 |
-
#: includes/class-testimonials-widget.php:
|
453 |
msgid "URL"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/class-testimonials-widget-settings.php:
|
457 |
msgid "ORDER BY Order"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/class-testimonials-widget-settings.php:
|
461 |
msgid "Descending"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/class-testimonials-widget-settings.php:
|
465 |
msgid "Ascending"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/class-testimonials-widget-settings.php:
|
469 |
msgid "Allow Comments?"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/class-testimonials-widget-settings.php:
|
473 |
msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: includes/class-testimonials-widget-settings.php:
|
477 |
msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: includes/class-testimonials-widget-settings.php:
|
481 |
msgid "Archive Page URL"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: includes/class-testimonials-widget-settings.php:
|
485 |
msgid "URL slug-name for testimonial view pages. Shouldn't be the same as the Archive Page URL nor should it match a page URL slug."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: includes/class-testimonials-widget-settings.php:
|
489 |
msgid "Testimonial Page URL"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: includes/class-testimonials-widget-settings.php:
|
493 |
msgid "Hide ID?"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/class-testimonials-widget-settings.php:
|
497 |
msgid "Hide Shortcode?"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/class-testimonials-widget-settings.php:
|
501 |
#: includes/libraries/aihrus-framework/includes/class-aihrus-settings.php:64
|
502 |
msgid "Reset"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/class-testimonials-widget-settings.php:
|
506 |
msgid "Don't Use Default Taxonomies?"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/class-testimonials-widget-settings.php:
|
510 |
msgid "If checked, use Testimonials' own category and tag taxonomies instead"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/class-testimonials-widget-settings.php:
|
514 |
msgid "Version Based Options"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/class-testimonials-widget-settings.php:
|
518 |
msgid "Disable Animation?"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/class-testimonials-widget-settings.php:
|
522 |
msgid "Prior to 2.15.0, Disable animation between testimonial transitions. Useful when stacking widgets."
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/class-testimonials-widget-settings.php:
|
526 |
msgid "Fade Out Speed"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/class-testimonials-widget-settings.php:
|
530 |
-
#: includes/class-testimonials-widget-settings.php:
|
531 |
msgid "Prior to 2.15.0, Transition duration in milliseconds; higher values indicate slower animations, not faster ones."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: includes/class-testimonials-widget-settings.php:
|
535 |
msgid "Fade In Speed"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: includes/class-testimonials-widget-settings.php:
|
539 |
msgid "Height"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: includes/class-testimonials-widget-settings.php:
|
543 |
msgid "Prior to 2.15.0, Testimonials height, in pixels. Overrides minimum and maximum height"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: includes/class-testimonials-widget-settings.php:
|
547 |
msgid "Minimum Height"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: includes/class-testimonials-widget-settings.php:
|
551 |
msgid "Prior to 2.15.0, Set for minimum display height, in pixels"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: includes/class-testimonials-widget-settings.php:
|
555 |
msgid "Maximum Height"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: includes/class-testimonials-widget-settings.php:
|
559 |
msgid "Prior to 2.15.0, Set for maximum display height, in pixels"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/class-testimonials-widget-settings.php:
|
563 |
msgid "These Testimonials Settings establish the default option values for shortcodes, theme functions, and widget instances. Widgets, once created no longer inherit these global settings. Therefore, you'll need to update each widget with the new settings. It might be easier to delete the widget and then recreate it."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: includes/class-testimonials-widget-settings.php:
|
567 |
msgid "Shortcode option names are listed below each entry."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/class-testimonials-widget-settings.php:
|
571 |
msgid "View the <a href=\"%s\">Testimonials documentation</a>."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: includes/class-testimonials-widget-settings.php:
|
575 |
msgid "Show or hide optional fields."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: includes/class-testimonials-widget-settings.php:
|
579 |
msgid "Options used to select testimonials."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: includes/class-testimonials-widget-settings.php:
|
583 |
msgid "Options used to determine displayed testimonials ordering."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: includes/class-testimonials-widget-settings.php:
|
587 |
msgid "Options related to showing testimonials in widgets."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: includes/class-testimonials-widget-settings.php:
|
591 |
msgid "Archive and singular page URL related testimonials options."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: includes/class-testimonials-widget-settings.php:
|
595 |
msgid "Allowed columns to display on edit page."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: includes/class-testimonials-widget-settings.php:
|
599 |
msgid "Compatibility & Reset"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: includes/class-testimonials-widget-settings.php:
|
603 |
msgid "Backwards compatibility, import/export options, and reset options."
|
604 |
msgstr ""
|
605 |
|
@@ -616,7 +616,7 @@ msgid "This widget's unique CSS class for styling"
|
|
616 |
msgstr ""
|
617 |
|
618 |
#: includes/class-testimonials-widget.php:144
|
619 |
-
#: includes/class-testimonials-widget.php:
|
620 |
msgid "Testimonials Shortcode Examples"
|
621 |
msgstr ""
|
622 |
|
@@ -681,8 +681,8 @@ msgid "Search Testimonials"
|
|
681 |
msgstr ""
|
682 |
|
683 |
#: includes/class-testimonials-widget.php:626
|
684 |
-
#: includes/class-testimonials-widget.php:
|
685 |
-
#: includes/class-testimonials-widget.php:
|
686 |
msgid "Testimonial"
|
687 |
msgstr ""
|
688 |
|
@@ -690,81 +690,81 @@ msgstr ""
|
|
690 |
msgid "View Testimonial"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/class-testimonials-widget.php:
|
694 |
msgid "…"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/class-testimonials-widget.php:
|
698 |
msgid "«"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/class-testimonials-widget.php:
|
702 |
msgid "»"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/class-testimonials-widget.php:
|
706 |
msgid "Testimonial Data"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/class-testimonials-widget.php:
|
710 |
msgid "Enter title here"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/class-testimonials-widget.php:
|
714 |
msgid "Enter testimonial source here"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/class-testimonials-widget.php:
|
718 |
msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/class-testimonials-widget.php:
|
722 |
msgid "Custom field updated."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/class-testimonials-widget.php:
|
726 |
msgid "Custom field deleted."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/class-testimonials-widget.php:
|
730 |
msgid "Testimonial updated."
|
731 |
msgstr ""
|
732 |
|
733 |
#. translators: %s: date and time of the revision
|
734 |
|
735 |
-
#: includes/class-testimonials-widget.php:
|
736 |
msgid "Testimonial restored to revision from %s"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: includes/class-testimonials-widget.php:
|
740 |
msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: includes/class-testimonials-widget.php:
|
744 |
msgid "Testimonial saved."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: includes/class-testimonials-widget.php:
|
748 |
msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: includes/class-testimonials-widget.php:
|
752 |
msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/class-testimonials-widget.php:
|
756 |
msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/class-testimonials-widget.php:
|
760 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/class-testimonials-widget.php:
|
764 |
msgid "Failed version check"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/class-testimonials-widget.php:
|
768 |
msgid "Shortcode"
|
769 |
msgstr ""
|
770 |
|
2 |
# This file is distributed under the same license as the Testimonials by Aihrus package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Testimonials by Aihrus 2.19.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
|
7 |
+
"POT-Creation-Date: 2014-05-18 16:26:03+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
22 |
msgstr ""
|
23 |
|
24 |
#: includes/class-testimonials-widget-settings.php:107
|
25 |
+
#: includes/class-testimonials-widget-settings.php:946
|
26 |
msgid "General"
|
27 |
msgstr ""
|
28 |
|
29 |
#: includes/class-testimonials-widget-settings.php:108
|
30 |
+
#: includes/class-testimonials-widget-settings.php:954
|
31 |
msgid "Selection"
|
32 |
msgstr ""
|
33 |
|
34 |
#: includes/class-testimonials-widget-settings.php:109
|
35 |
+
#: includes/class-testimonials-widget-settings.php:962
|
36 |
msgid "Ordering"
|
37 |
msgstr ""
|
38 |
|
39 |
#: includes/class-testimonials-widget-settings.php:110
|
40 |
+
#: includes/class-testimonials-widget-settings.php:970
|
41 |
msgid "Widget"
|
42 |
msgstr ""
|
43 |
|
44 |
#: includes/class-testimonials-widget-settings.php:111
|
45 |
+
#: includes/class-testimonials-widget-settings.php:978
|
46 |
msgid "Post Type"
|
47 |
msgstr ""
|
48 |
|
49 |
#: includes/class-testimonials-widget-settings.php:112
|
50 |
+
#: includes/class-testimonials-widget-settings.php:986
|
51 |
msgid "Columns"
|
52 |
msgstr ""
|
53 |
|
119 |
msgstr ""
|
120 |
|
121 |
#: includes/class-testimonials-widget-settings.php:191
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
msgid "Keep Whitespace?"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: includes/class-testimonials-widget-settings.php:192
|
126 |
msgid "Keeps testimonials looking as entered than sans auto-formatting"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: includes/class-testimonials-widget-settings.php:199
|
130 |
msgid "Testimonial Bottom Text"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/class-testimonials-widget-settings.php:200
|
134 |
msgid "Custom text or HTML for bottom of testimonials"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/class-testimonials-widget-settings.php:212
|
138 |
msgid "General Options"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/class-testimonials-widget-settings.php:217
|
142 |
msgid "Use bxSlider?"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/class-testimonials-widget-settings.php:218
|
146 |
msgid "Prior to 2.15.0, Testimonials' used custom JavaScript for transitions."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/class-testimonials-widget-settings.php:232
|
150 |
msgid "Exclude bxSlider CSS?"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/class-testimonials-widget-settings.php:233
|
154 |
msgid "For a bare-bones, unthemed slider."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/class-testimonials-widget-settings.php:241
|
158 |
msgid "Include IE7 CSS?"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/class-testimonials-widget-settings.php:248
|
162 |
msgid "Hide built-in quotes?"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-testimonials-widget-settings.php:249
|
166 |
msgid "Remove open and close quote span tags surrounding testimonial content"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/class-testimonials-widget-settings.php:255
|
170 |
msgid "Remove `.hentry` CSS?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/class-testimonials-widget-settings.php:256
|
174 |
msgid "Some themes use class `.hentry` in a manner that breaks Testimonials' CSS"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/class-testimonials-widget-settings.php:263
|
178 |
msgid "Use `<q>` tag?"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/class-testimonials-widget-settings.php:264
|
182 |
msgid "Not HTML5 compliant"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/class-testimonials-widget-settings.php:270
|
186 |
msgid "Fields to Show"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/class-testimonials-widget-settings.php:275
|
190 |
msgid "Hide Gravatar Image?"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/class-testimonials-widget-settings.php:281
|
194 |
+
#: includes/class-testimonials-widget-settings.php:581
|
195 |
msgid "Hide Image?"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/class-testimonials-widget-settings.php:287
|
199 |
msgid "Hide Image in Single View?"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/class-testimonials-widget-settings.php:294
|
203 |
msgid "Hide Testimonial Content?"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-testimonials-widget-settings.php:300
|
207 |
msgid "Hide Author/Source?"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-testimonials-widget-settings.php:303
|
211 |
msgid "Don't display \"Post Title\" in cite"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/class-testimonials-widget-settings.php:307
|
215 |
+
#: includes/class-testimonials-widget-settings.php:615
|
216 |
msgid "Hide Email?"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/class-testimonials-widget-settings.php:314
|
220 |
+
#: includes/class-testimonials-widget-settings.php:597
|
221 |
msgid "Hide Job Title?"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/class-testimonials-widget-settings.php:320
|
225 |
+
#: includes/class-testimonials-widget-settings.php:606
|
226 |
msgid "Hide Location?"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/class-testimonials-widget-settings.php:326
|
230 |
+
#: includes/class-testimonials-widget-settings.php:624
|
231 |
msgid "Hide Company?"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: includes/class-testimonials-widget-settings.php:332
|
235 |
+
#: includes/class-testimonials-widget-settings.php:633
|
236 |
msgid "Hide URL?"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/class-testimonials-widget-settings.php:338
|
240 |
msgid "Miscellaneous"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/class-testimonials-widget-settings.php:343
|
244 |
msgid "Default Reviewed Item?"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/class-testimonials-widget-settings.php:344
|
248 |
msgid "Name of thing being referenced in testimonials"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/class-testimonials-widget-settings.php:350
|
252 |
msgid "Default Reviewed Item URL?"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/class-testimonials-widget-settings.php:351
|
256 |
msgid "URL of thing being referenced in testimonials"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/class-testimonials-widget-settings.php:358
|
260 |
msgid "Enable Paging?"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/class-testimonials-widget-settings.php:359
|
264 |
msgid "For `[testimonials]`"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/class-testimonials-widget-settings.php:362
|
268 |
msgid "Disable"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/class-testimonials-widget-settings.php:363
|
272 |
msgid "Enable"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/class-testimonials-widget-settings.php:364
|
276 |
msgid "Before testimonials"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/class-testimonials-widget-settings.php:365
|
280 |
msgid "After testimonials"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/class-testimonials-widget-settings.php:371
|
284 |
msgid "Adds HTML tag markup per the <a href=\"%s\">Review schema</a> to testimonials. Search engines including Bing, Google, Yahoo! and Yandex rely on this markup to improve the display of search results."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/class-testimonials-widget-settings.php:374
|
288 |
msgid "Enable Review Schema?"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/class-testimonials-widget-settings.php:382
|
292 |
+
msgid "Enable Video?"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/class-testimonials-widget-settings.php:383
|
296 |
+
msgid "Only enable when displaying video content."
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/class-testimonials-widget-settings.php:389
|
300 |
msgid "Enable [shortcodes]?"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/class-testimonials-widget-settings.php:390
|
304 |
msgid "If unchecked, shortcodes are stripped."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/class-testimonials-widget-settings.php:397
|
308 |
msgid "Hide \"Testimonials Not Found\"?"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/class-testimonials-widget-settings.php:403
|
312 |
msgid "URL Target"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/class-testimonials-widget-settings.php:404
|
316 |
msgid "Add target to all URLs; leave blank if none"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/class-testimonials-widget-settings.php:415
|
320 |
msgid "Selection Options"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/class-testimonials-widget-settings.php:421
|
324 |
msgid "Category Filter"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/class-testimonials-widget-settings.php:422
|
328 |
msgid "Comma separated category names. Ex: Category A, Another category"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/class-testimonials-widget-settings.php:429
|
332 |
msgid "Tags Filter"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/class-testimonials-widget-settings.php:430
|
336 |
msgid "Comma separated tag names. Ex: Tag A, Another tag"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/class-testimonials-widget-settings.php:437
|
340 |
msgid "Require All Tags?"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/class-testimonials-widget-settings.php:438
|
344 |
msgid "Select only testimonials with all of the given tags"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/class-testimonials-widget-settings.php:445
|
348 |
msgid "Include IDs Filter"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: includes/class-testimonials-widget-settings.php:446
|
352 |
+
#: includes/class-testimonials-widget-settings.php:453
|
353 |
msgid "Comma separated testimonial IDs. Ex: 3,1,2"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: includes/class-testimonials-widget-settings.php:452
|
357 |
msgid "Exclude IDs Filter"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: includes/class-testimonials-widget-settings.php:459
|
361 |
msgid "Limit"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: includes/class-testimonials-widget-settings.php:460
|
365 |
msgid "Number of testimonials to select per instance"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: includes/class-testimonials-widget-settings.php:473
|
369 |
msgid "Ordering Options"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: includes/class-testimonials-widget-settings.php:479
|
373 |
msgid "Random Order?"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: includes/class-testimonials-widget-settings.php:480
|
377 |
msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/class-testimonials-widget-settings.php:487
|
381 |
msgid "ORDER BY"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/class-testimonials-widget-settings.php:488
|
385 |
msgid "Used when \"Random Order\" is disabled"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: includes/class-testimonials-widget-settings.php:491
|
389 |
msgid "Testimonial ID"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/class-testimonials-widget-settings.php:492
|
393 |
msgid "Author"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/class-testimonials-widget-settings.php:493
|
397 |
#: includes/class-testimonials-widget.php:557
|
398 |
msgid "Date"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/class-testimonials-widget-settings.php:494
|
402 |
msgid "Menu Order"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/class-testimonials-widget-settings.php:495
|
406 |
#: includes/class-testimonials-widget.php:555
|
407 |
msgid "Source"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/class-testimonials-widget-settings.php:496
|
411 |
msgid "No order"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: includes/class-testimonials-widget-settings.php:504
|
415 |
msgid "ORDER BY meta_key"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/class-testimonials-widget-settings.php:505
|
419 |
msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/class-testimonials-widget-settings.php:508
|
423 |
msgid "None"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/class-testimonials-widget-settings.php:509
|
427 |
#: includes/class-testimonials-widget.php:586
|
428 |
+
#: includes/class-testimonials-widget.php:1714
|
429 |
msgid "Job Title"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/class-testimonials-widget-settings.php:510
|
433 |
#: includes/class-testimonials-widget.php:596
|
434 |
+
#: includes/class-testimonials-widget.php:1726
|
435 |
msgid "Email"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/class-testimonials-widget-settings.php:511
|
439 |
#: includes/class-testimonials-widget.php:591
|
440 |
+
#: includes/class-testimonials-widget.php:1720
|
441 |
msgid "Location"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/class-testimonials-widget-settings.php:512
|
445 |
#: includes/class-testimonials-widget.php:601
|
446 |
+
#: includes/class-testimonials-widget.php:1732
|
447 |
msgid "Company"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/class-testimonials-widget-settings.php:513
|
451 |
#: includes/class-testimonials-widget.php:606
|
452 |
+
#: includes/class-testimonials-widget.php:1738
|
453 |
msgid "URL"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/class-testimonials-widget-settings.php:520
|
457 |
msgid "ORDER BY Order"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/class-testimonials-widget-settings.php:523
|
461 |
msgid "Descending"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/class-testimonials-widget-settings.php:524
|
465 |
msgid "Ascending"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/class-testimonials-widget-settings.php:538
|
469 |
msgid "Allow Comments?"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/class-testimonials-widget-settings.php:539
|
473 |
msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/class-testimonials-widget-settings.php:545
|
477 |
msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/class-testimonials-widget-settings.php:551
|
481 |
msgid "Archive Page URL"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/class-testimonials-widget-settings.php:558
|
485 |
msgid "URL slug-name for testimonial view pages. Shouldn't be the same as the Archive Page URL nor should it match a page URL slug."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/class-testimonials-widget-settings.php:562
|
489 |
msgid "Testimonial Page URL"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/class-testimonials-widget-settings.php:572
|
493 |
msgid "Hide ID?"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/class-testimonials-widget-settings.php:589
|
497 |
msgid "Hide Shortcode?"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/class-testimonials-widget-settings.php:643
|
501 |
#: includes/libraries/aihrus-framework/includes/class-aihrus-settings.php:64
|
502 |
msgid "Reset"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: includes/class-testimonials-widget-settings.php:649
|
506 |
msgid "Don't Use Default Taxonomies?"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/class-testimonials-widget-settings.php:652
|
510 |
msgid "If checked, use Testimonials' own category and tag taxonomies instead"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/class-testimonials-widget-settings.php:661
|
514 |
msgid "Version Based Options"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/class-testimonials-widget-settings.php:667
|
518 |
msgid "Disable Animation?"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/class-testimonials-widget-settings.php:668
|
522 |
msgid "Prior to 2.15.0, Disable animation between testimonial transitions. Useful when stacking widgets."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/class-testimonials-widget-settings.php:676
|
526 |
msgid "Fade Out Speed"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: includes/class-testimonials-widget-settings.php:677
|
530 |
+
#: includes/class-testimonials-widget-settings.php:685
|
531 |
msgid "Prior to 2.15.0, Transition duration in milliseconds; higher values indicate slower animations, not faster ones."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/class-testimonials-widget-settings.php:684
|
535 |
msgid "Fade In Speed"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/class-testimonials-widget-settings.php:692
|
539 |
msgid "Height"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/class-testimonials-widget-settings.php:693
|
543 |
msgid "Prior to 2.15.0, Testimonials height, in pixels. Overrides minimum and maximum height"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/class-testimonials-widget-settings.php:699
|
547 |
msgid "Minimum Height"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/class-testimonials-widget-settings.php:700
|
551 |
msgid "Prior to 2.15.0, Set for minimum display height, in pixels"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/class-testimonials-widget-settings.php:706
|
555 |
msgid "Maximum Height"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/class-testimonials-widget-settings.php:707
|
559 |
msgid "Prior to 2.15.0, Set for maximum display height, in pixels"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/class-testimonials-widget-settings.php:932
|
563 |
msgid "These Testimonials Settings establish the default option values for shortcodes, theme functions, and widget instances. Widgets, once created no longer inherit these global settings. Therefore, you'll need to update each widget with the new settings. It might be easier to delete the widget and then recreate it."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/class-testimonials-widget-settings.php:934
|
567 |
msgid "Shortcode option names are listed below each entry."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/class-testimonials-widget-settings.php:937
|
571 |
msgid "View the <a href=\"%s\">Testimonials documentation</a>."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/class-testimonials-widget-settings.php:947
|
575 |
msgid "Show or hide optional fields."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/class-testimonials-widget-settings.php:955
|
579 |
msgid "Options used to select testimonials."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/class-testimonials-widget-settings.php:963
|
583 |
msgid "Options used to determine displayed testimonials ordering."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/class-testimonials-widget-settings.php:971
|
587 |
msgid "Options related to showing testimonials in widgets."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/class-testimonials-widget-settings.php:979
|
591 |
msgid "Archive and singular page URL related testimonials options."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/class-testimonials-widget-settings.php:987
|
595 |
msgid "Allowed columns to display on edit page."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/class-testimonials-widget-settings.php:994
|
599 |
msgid "Compatibility & Reset"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/class-testimonials-widget-settings.php:995
|
603 |
msgid "Backwards compatibility, import/export options, and reset options."
|
604 |
msgstr ""
|
605 |
|
616 |
msgstr ""
|
617 |
|
618 |
#: includes/class-testimonials-widget.php:144
|
619 |
+
#: includes/class-testimonials-widget.php:2081
|
620 |
msgid "Testimonials Shortcode Examples"
|
621 |
msgstr ""
|
622 |
|
681 |
msgstr ""
|
682 |
|
683 |
#: includes/class-testimonials-widget.php:626
|
684 |
+
#: includes/class-testimonials-widget.php:1826
|
685 |
+
#: includes/class-testimonials-widget.php:2210
|
686 |
msgid "Testimonial"
|
687 |
msgstr ""
|
688 |
|
690 |
msgid "View Testimonial"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/class-testimonials-widget.php:1223
|
694 |
msgid "…"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: includes/class-testimonials-widget.php:1439
|
698 |
msgid "«"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: includes/class-testimonials-widget.php:1447
|
702 |
msgid "»"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/class-testimonials-widget.php:1750
|
706 |
msgid "Testimonial Data"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/class-testimonials-widget.php:1775
|
710 |
msgid "Enter title here"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/class-testimonials-widget.php:1776
|
714 |
msgid "Enter testimonial source here"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-testimonials-widget.php:1801
|
718 |
msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/class-testimonials-widget.php:1802
|
722 |
msgid "Custom field updated."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/class-testimonials-widget.php:1803
|
726 |
msgid "Custom field deleted."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/class-testimonials-widget.php:1804
|
730 |
msgid "Testimonial updated."
|
731 |
msgstr ""
|
732 |
|
733 |
#. translators: %s: date and time of the revision
|
734 |
|
735 |
+
#: includes/class-testimonials-widget.php:1806
|
736 |
msgid "Testimonial restored to revision from %s"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: includes/class-testimonials-widget.php:1807
|
740 |
msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: includes/class-testimonials-widget.php:1808
|
744 |
msgid "Testimonial saved."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/class-testimonials-widget.php:1809
|
748 |
msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/class-testimonials-widget.php:1810
|
752 |
msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/class-testimonials-widget.php:1811
|
756 |
msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: includes/class-testimonials-widget.php:2072
|
760 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/class-testimonials-widget.php:2127
|
764 |
msgid "Failed version check"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: includes/class-testimonials-widget.php:2158
|
768 |
msgid "Shortcode"
|
769 |
msgstr ""
|
770 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://aihr.us/about-aihrus/donate/
|
|
5 |
Tags: client, customer, portfolio, quotations, quote, quotes, random, recommendation, reference, review, reviews, testimonial, testimonials, testimony, wpml
|
6 |
Requires at least: 3.6
|
7 |
Tested up to: 4.0.0
|
8 |
-
Stable tag: 2.19.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -16,9 +16,9 @@ Testimonials by Aihrus lets you randomly slide or list selected portfolios, quot
|
|
16 |
|
17 |
Testimonials [by Aihrus](http://aihr.us/about-aihrus/) lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site. You can insert Testimonials content via shortcode, theme functions, or widgets with category and tag selections and having multiple display options such as random or specific ordering. Further, [Review schema](http://schema.org/Review) for improved search engine results is built-in.
|
18 |
|
19 |
-
|
20 |
|
21 |
-
|
22 |
|
23 |
**View a [Live Testimonials Demo](http://aihr.us/testimonials-examples/)**
|
24 |
|
@@ -35,11 +35,15 @@ Testimonials [by Aihrus](http://aihr.us/about-aihrus/) lets you randomly slide o
|
|
35 |
* Fade and slide transitions
|
36 |
* Filter slideshow content by WordPress' built in categories, tags, or post-ID
|
37 |
|
38 |
-
More than one Testimonials shortcode or widget instance can be displayed at a time
|
|
|
|
|
39 |
|
40 |
-
|
41 |
|
42 |
-
|
|
|
|
|
43 |
|
44 |
The single testimonial view supports image, source, title, location, email, company and URL details with optional Review schema.
|
45 |
|
@@ -233,6 +237,8 @@ Further, global settings are the baseline for shortcodes. If you want to alter t
|
|
233 |
* Widget - Not functional
|
234 |
* Enable Review Schema? – Adds HTML tag markup per the [Review schema](http://schema.org/Review) to testimonials. Search engines including Bing, Google, Yahoo! and Yandex rely on this markup to improve the display of search results.
|
235 |
* `enable_schema` - default true; enable_schema=false
|
|
|
|
|
236 |
* Enable [shortcodes]? - If unchecked, shortcodes are stripped.
|
237 |
* `do_shortcode` - default false; do_shortcode=true
|
238 |
* Hide "Testimonials Not Found"?
|
@@ -282,8 +288,6 @@ Further, global settings are the baseline for shortcodes. If you want to alter t
|
|
282 |
* `transition_mode` - default fade; transition_mode=horizontal|vertical|fade
|
283 |
* Show Play/Pause? - Display start and stop buttons underneath the testimonial slider.
|
284 |
* `show_start_stop` - default true; show_start_stop=false
|
285 |
-
* Enable Video? - Only enable when displaying video content.
|
286 |
-
* `enable_video` - default false; enable_video=true
|
287 |
* Keep Whitespace? - Keeps testimonials looking as entered than sans auto-formatting
|
288 |
* `keep_whitespace` - default none; keep_whitespace=true
|
289 |
* The citation has no whitespace adaptations. It's straight text, except for email or URL links. The presentation is handled strictly by CSS.
|
@@ -440,6 +444,10 @@ See [Changelog](https://github.com/michael-cannon/testimonials-widget/blob/maste
|
|
440 |
|
441 |
== Upgrade Notice ==
|
442 |
|
|
|
|
|
|
|
|
|
443 |
= 2.19.0 =
|
444 |
|
445 |
* CSS class `.title` is now `.job-title`. Thank you Mark
|
5 |
Tags: client, customer, portfolio, quotations, quote, quotes, random, recommendation, reference, review, reviews, testimonial, testimonials, testimony, wpml
|
6 |
Requires at least: 3.6
|
7 |
Tested up to: 4.0.0
|
8 |
+
Stable tag: 2.19.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
16 |
|
17 |
Testimonials [by Aihrus](http://aihr.us/about-aihrus/) lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site. You can insert Testimonials content via shortcode, theme functions, or widgets with category and tag selections and having multiple display options such as random or specific ordering. Further, [Review schema](http://schema.org/Review) for improved search engine results is built-in.
|
18 |
|
19 |
+
**Video Introduction**
|
20 |
|
21 |
+
[youtube https://www.youtube.com/watch?v=bhUhuQ-2m8s]
|
22 |
|
23 |
**View a [Live Testimonials Demo](http://aihr.us/testimonials-examples/)**
|
24 |
|
35 |
* Fade and slide transitions
|
36 |
* Filter slideshow content by WordPress' built in categories, tags, or post-ID
|
37 |
|
38 |
+
More than one Testimonials shortcode or widget instance can be displayed at a time on a page. Additionally, with shortcodes and theme functions, you can display a short or long list or rotation of testimonials anywhere you need.
|
39 |
+
|
40 |
+
Through categories and tagging, you can create organizational structures. Using categories for products, projects and services you can then apply tagging for further classification.
|
41 |
|
42 |
+
As an example, create a **Portfolio** category and then use tags to identify _web_, _magazine_, _media_, _public_, _enterprise_, or other niches. Then configure the Testimonial instance to show only **Portfolio** testimonials with the _public_ and _enterprise_ tags. In another Testimonial instance, you can also select only **Portfolio** testimonials, but then allow _web_ and _media_ tags.
|
43 |
|
44 |
+
For easy custom styling, each Testimonial widget has its own CSS class identifier.
|
45 |
+
|
46 |
+
Widgets display content sans `wpautop` formatting. This means there's no forced paragraph breaks unless the content specifically contains them. If needed, you can enable `wpautop` via the "Keep whitespace?" option.
|
47 |
|
48 |
The single testimonial view supports image, source, title, location, email, company and URL details with optional Review schema.
|
49 |
|
237 |
* Widget - Not functional
|
238 |
* Enable Review Schema? – Adds HTML tag markup per the [Review schema](http://schema.org/Review) to testimonials. Search engines including Bing, Google, Yahoo! and Yandex rely on this markup to improve the display of search results.
|
239 |
* `enable_schema` - default true; enable_schema=false
|
240 |
+
* Enable Video? - Only enable when displaying video content.
|
241 |
+
* `enable_video` - default false; enable_video=true
|
242 |
* Enable [shortcodes]? - If unchecked, shortcodes are stripped.
|
243 |
* `do_shortcode` - default false; do_shortcode=true
|
244 |
* Hide "Testimonials Not Found"?
|
288 |
* `transition_mode` - default fade; transition_mode=horizontal|vertical|fade
|
289 |
* Show Play/Pause? - Display start and stop buttons underneath the testimonial slider.
|
290 |
* `show_start_stop` - default true; show_start_stop=false
|
|
|
|
|
291 |
* Keep Whitespace? - Keeps testimonials looking as entered than sans auto-formatting
|
292 |
* `keep_whitespace` - default none; keep_whitespace=true
|
293 |
* The citation has no whitespace adaptations. It's straight text, except for email or URL links. The presentation is handled strictly by CSS.
|
444 |
|
445 |
== Upgrade Notice ==
|
446 |
|
447 |
+
= 2.19.6 =
|
448 |
+
|
449 |
+
* Enable Video also means enable video embedding and display
|
450 |
+
|
451 |
= 2.19.0 =
|
452 |
|
453 |
* CSS class `.title` is now `.job-title`. Thank you Mark
|
testimonials-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Testimonials by Aihrus
|
4 |
* Plugin URI: http://wordpress.org/plugins/testimonials-widget/
|
5 |
* Description: Testimonials by Aihrus lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
|
6 |
-
* Version: 2.19.
|
7 |
* Author: Michael Cannon
|
8 |
* Author URI: http://aihr.us/resume/
|
9 |
* License: GPLv2 or later
|
@@ -52,7 +52,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) )
|
|
52 |
define( 'TW_PREMIUM_LINK', '<a href="http://aihr.us/downloads/testimonials-widget-premium-wordpress-plugin/">Buy Premium</a>' );
|
53 |
|
54 |
if ( ! defined( 'TW_VERSION' ) )
|
55 |
-
define( 'TW_VERSION', '2.19.
|
56 |
|
57 |
require_once TW_DIR_INC . 'requirements.php';
|
58 |
|
3 |
* Plugin Name: Testimonials by Aihrus
|
4 |
* Plugin URI: http://wordpress.org/plugins/testimonials-widget/
|
5 |
* Description: Testimonials by Aihrus lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
|
6 |
+
* Version: 2.19.6
|
7 |
* Author: Michael Cannon
|
8 |
* Author URI: http://aihr.us/resume/
|
9 |
* License: GPLv2 or later
|
52 |
define( 'TW_PREMIUM_LINK', '<a href="http://aihr.us/downloads/testimonials-widget-premium-wordpress-plugin/">Buy Premium</a>' );
|
53 |
|
54 |
if ( ! defined( 'TW_VERSION' ) )
|
55 |
+
define( 'TW_VERSION', '2.19.6' );
|
56 |
|
57 |
require_once TW_DIR_INC . 'requirements.php';
|
58 |
|