Changeset 2528983
- Timestamp:
- 05/10/2021 10:07:00 AM (5 years ago)
- Location:
- cowidgets-elementor-addons/trunk
- Files:
-
- 3 edited
-
cowidgets.php (modified) (1 diff)
-
inc/widgets-manager/widgets/content/class-ce-portfolio-grid.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cowidgets-elementor-addons/trunk/cowidgets.php
r2528338 r2528983 8 8 * Text Domain: cowidgets 9 9 * Domain Path: /languages 10 * Version: 1.0. 810 * Version: 1.0.9 11 11 * 12 12 * @package cowidgets 13 13 */ 14 14 15 define( 'COWIDGETS_VER', '1.0. 8' );15 define( 'COWIDGETS_VER', '1.0.9' ); 16 16 define( 'COWIDGETS_DIR', plugin_dir_path( __FILE__ ) ); 17 17 define( 'COWIDGETS_URL', plugins_url( '/', __FILE__ ) ); -
cowidgets-elementor-addons/trunk/inc/widgets-manager/widgets/content/class-ce-portfolio-grid.php
r2527993 r2528983 660 660 $new_query = array( 661 661 'post__in' => $this->get_gallery_image_ids( $settings['items_gallery'] ), 662 662 'post_status' => 'any', 663 663 'orderby' => 'post__in', 664 664 'post_type' => 'attachment', … … 668 668 669 669 } 670 670 671 671 672 $the_query = new \WP_Query( $new_query ); 672 673 673 674 if ( is_object( $the_query ) && $the_query->have_posts() ) : 674 675 $counter = 0; … … 676 677 // used for separate items with columns in HTML 677 678 $column1 = $column2 = $column3 = ''; 678 679 679 680 // Start loop 680 681 while ( $the_query->have_posts() ) : $the_query->the_post(); ?> 681 682 <?php 683 682 684 $counter += 1; 683 685 $delay = ( $counter * (int) $settings['ce_animation_delay'] ); -
cowidgets-elementor-addons/trunk/readme.txt
r2528338 r2528983 87 87 == Changelog == 88 88 89 = 1.0.9 = 90 * Fixed: Portfolio Grid from Gallery Images not working 91 92 = 1.0.8 = 93 * Fixed: Fatal Error 94 89 95 = 1.0.7 = 90 96 * Added: New Podcast Elements
Note: See TracChangeset
for help on using the changeset viewer.