Changeset 2510274
- Timestamp:
- 04/06/2021 06:48:45 PM (5 years ago)
- Location:
- i2-azon/trunk
- Files:
-
- 3 edited
-
i2-azon.php (modified) (2 diffs)
-
include/register-post-types.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2-azon/trunk/i2-azon.php
r2463755 r2510274 6 6 * Author: imibrar 7 7 * Author URI: https://themesfirst.com/ 8 * Version: 0.2. 48 * Version: 0.2.5 9 9 * License: GPL2+ 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 29 29 30 30 define('I2_AZON_PLUGIN_NAME', 'i2 AZON' ); 31 define('I2_AZON_VER', '0.2. 4' );31 define('I2_AZON_VER', '0.2.5' ); 32 32 define('I2_AZON_DEBUG', false ); 33 33 define('I2_AZON_BASE_FILE', __FILE__ ); -
i2-azon/trunk/include/register-post-types.php
r2460809 r2510274 147 147 if (intval($atts['id']) > 0) { 148 148 $content = get_post_field('post_content', $atts['id']); 149 return apply_filters('the_content', $content); 149 $block_content = ""; 150 $blocks = parse_blocks($content); 151 152 foreach ($blocks as $block) { 153 $block_content .= render_block($block); 154 } 155 return $block_content; 150 156 } 151 157 return null; -
i2-azon/trunk/readme.txt
r2463755 r2510274 26 26 27 27 == Changelog == 28 v2.5 fixed shortcode issue 28 29 v2.4 fixed color clear undefined issue 29 30 v2.3 image alignment fixed in small screen
Note: See TracChangeset
for help on using the changeset viewer.