Changeset 711074
- Timestamp:
- 05/10/2013 08:33:54 PM (13 years ago)
- Location:
- tb-testimonials/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
tb-testimonials.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tb-testimonials/trunk/readme.txt
r707530 r711074 1 1 === TBTestimonials === 2 2 Contributors: ansimation 3 Donate link: http:// visitfloridastateparks.com/donate/3 Donate link: http://travisballard.com/donate/ 4 4 Tags: testimonial, testimonials, quote, quotes, business, client, customer, testimony, reference, ajax, widget, testimonial widget, custom post type 5 5 Requires at least: 3.0 6 6 Tested up to: 3.6 7 Stable tag: 1.7. 17 Stable tag: 1.7.2 8 8 9 9 Powerful Testimonial Management. Create and use custom Output Templates anywhere on your site. Use the shortcode, function, or included widget to display your testimonials to your users. … … 45 45 46 46 == Changelog == 47 48 = 1.7.2 = 49 * Fixes a bug in tbtestimonial() function where category names being passed do not work correctly because of is_numeric conditional 47 50 48 51 = 1.7.1 = -
tb-testimonials/trunk/tb-testimonials.php
r707530 r711074 4 4 * Plugin URI: http://travisballard.com/wordpress/tb-testimonials/ 5 5 * Description: Powerful Testimonial Management. Create and use custom Output Templates anywhere on your site. Use the shortcode, function, or included widget to display your testimonials to your users. 6 * Version: 1.7. 16 * Version: 1.7.2 7 7 * Author: Travis Ballard 8 8 * Author URI: http://www.travisballard.com … … 1031 1031 elseif( is_numeric( $id ) && ! $cat ) 1032 1032 $q = new WP_Query( array( 'p' => (int)$id, 'post_type' => 'testimonial', 'post_status' => 'publish' ) ); 1033 elseif( is_ numeric( $id ) && $cat )1034 $q = new WP_Query( array( 'testimonial_category' => $id, 'post_type' => 'testimonial', 'post_status' => 'publish' ) );1033 elseif( is_string( $id ) && $cat ) 1034 $q = new WP_Query( array( 'testimonial_category' => $id, 'post_type' => 'testimonial', 'post_status' => 'publish', 'orderby' => $orderby, 'order' => $order ) ); 1035 1035 else 1036 1036 return false;
Note: See TracChangeset
for help on using the changeset viewer.