Changeset 2086420
- Timestamp:
- 05/12/2019 11:35:47 PM (7 years ago)
- Location:
- content-repeater/trunk
- Files:
-
- 3 edited
-
content-repeater.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
repeaters/isotope/isotope.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
content-repeater/trunk/content-repeater.php
r2084368 r2086420 3 3 * Plugin Name: Content Repeater 4 4 * Description: Quickly set up custom content like Testimonials, Coupons, Products, Flipboxes, Portals, Portfolios, Before & Afters, etc. and display it in interesting ways: Ajax Reload, Masonry, Isotope, Slick Slider, Single Row. 5 * Version: 1.0.1 25 * Version: 1.0.13 6 6 * Author: Denis Buka 7 7 * Text Domain: content-repeater -
content-repeater/trunk/readme.txt
r2084368 r2086420 98 98 = 1.0.12 = 99 99 add post__in argument to shortcodes 100 = 1.0.13 = 101 isotope: add child class -
content-repeater/trunk/repeaters/isotope/isotope.php
r2053059 r2086420 75 75 $output .= '<a href="#" class="all">'.__('All').'</a>'; 76 76 foreach($terms as $k=>$v) { 77 if($v['parent'] == 0) $output .= '<span class="isotope-separator"></span>'; 78 $output .= '<a href="#" class="'.$v['slug'].'">'.$v['name'].'</a>'; 77 if($v['parent'] == 0) { 78 $output .= '<span class="isotope-separator"></span>'; 79 $class_child = ''; 80 } else { 81 $class_child = ' child'; 82 } 83 $output .= '<a href="#" class="'.$v['slug'].$class_child.'">'.$v['name'].'</a>'; 79 84 } 80 85 $output .= '</div>';
Note: See TracChangeset
for help on using the changeset viewer.