Changeset 648036
- Timestamp:
- 01/04/2013 10:03:57 PM (13 years ago)
- Location:
- tb-testimonials/trunk
- Files:
-
- 3 edited
-
inc/tpl/documentation.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
tb-testimonials.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tb-testimonials/trunk/inc/tpl/documentation.php
r568734 r648036 135 135 <dt>tbt_template_functions</dt> 136 136 <dd><strong>Hook</strong> for adding new tags. See Examples Tab for an example.</dd> 137 138 <dt>tbtestimonials_shortcode</dt> 139 <dd>Filter for changing the shortcode.</dd> 137 140 </dl> 138 141 </div> -
tb-testimonials/trunk/readme.txt
r647501 r648036 43 43 44 44 == Changelog == 45 46 = 1.6.4 = 47 * Added filter to change the shortcode in the event of a conflict. 45 48 46 49 = 1.6.3 = -
tb-testimonials/trunk/tb-testimonials.php
r647501 r648036 4 4 * Plugin URI: http://travisballard.com/wordpress/tb-testimonials/ 5 5 * Description: Testimonials managed by Custom Post Types. Supports a testimonial.php template file for single testimonial pages. Testimonial Shortcode to insert testimonials in any post. Scrolling Sidebar Widget 6 * Version: 1.6. 36 * Version: 1.6.4 7 7 * Author: Travis Ballard 8 8 * Author URI: http://www.travisballard.com … … 93 93 # shortcodes 94 94 add_action('wp_ajax_tbtestimonials-shortcode', array( &$this, 'shortcode_window' ) ); 95 add_shortcode( 'testimonial', array( &$this, 'shortcode' ) ); 96 add_shortcode( 'testimonial_form', array( &$this, 'testimonial_form' ) ); 95 add_shortcode( add_filter( 'tbtestimonials_shortcode', 'testimonial' ), array( &$this, 'shortcode' ) ); 97 96 98 97 # image sizes
Note: See TracChangeset
for help on using the changeset viewer.