Changeset 2384504
- Timestamp:
- 09/18/2020 02:15:24 PM (6 years ago)
- Location:
- yikes-inc-easy-custom-woocommerce-product-tabs/trunk
- Files:
-
- 3 edited
-
admin/class.settings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
yikes-inc-easy-custom-woocommerce-product-tabs.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
yikes-inc-easy-custom-woocommerce-product-tabs/trunk/admin/class.settings.php
r2365870 r2384504 44 44 $content = function_exists( 'shortcode_unautop' ) ? shortcode_unautop( $content ) : $content; 45 45 $content = function_exists( 'prepend_attachment' ) ? prepend_attachment( $content ) : $content; 46 $content = function_exists( 'wp_ make_content_images_responsive' ) ? wp_make_content_images_responsive( $content ) : $content;46 $content = function_exists( 'wp_filter_content_tags' ) ? wp_filter_content_tags( $content ) : $content; 47 47 $content = function_exists( 'do_shortcode' ) ? do_shortcode( $content ) : $content; 48 48 -
yikes-inc-easy-custom-woocommerce-product-tabs/trunk/readme.txt
r2378815 r2384504 5 5 Requires at least: 3.8 6 6 Tested up to: 5.5 7 Stable tag: 1.7. 47 Stable tag: 1.7.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 76 76 == Changelog == 77 78 = 1.7.5 – September 18th, 2020 = 79 * Swapping (deprecated) wp_make_content_images_responsive for wp_filter_content_tags in our content filter. Thanks @stephencd! 77 80 78 81 = 1.7.4 – September 12th, 2020 = -
yikes-inc-easy-custom-woocommerce-product-tabs/trunk/yikes-inc-easy-custom-woocommerce-product-tabs.php
r2378815 r2384504 6 6 * Author: YIKES, Inc. 7 7 * Author URI: http://www.yikesinc.com 8 * Version: 1.7. 48 * Version: 1.7.5 9 9 * Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs 10 10 * Domain Path: languages/ … … 106 106 */ 107 107 if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) { 108 define( 'YIKES_Custom_Product_Tabs_Version', '1.7. 4' );108 define( 'YIKES_Custom_Product_Tabs_Version', '1.7.5' ); 109 109 } 110 110
Note: See TracChangeset
for help on using the changeset viewer.