Changes between Version 1 and Version 2 of Ticket #58333, comment 7
- Timestamp:
- 05/17/2023 12:49:49 AM (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58333, comment 7
v1 v2 16 16 if (isset($parsed_block['innerContent'])) { 17 17 foreach ($parsed_block['innerContent'] as &$innerContent) { 18 if (empty($innerContent)) { 19 continue; 20 } 21 18 22 $innerContent = do_shortcode($innerContent); 19 23 } … … 24 28 if (! empty($innerBlock['innerContent'])) { 25 29 foreach ($innerBlock['innerContent'] as &$innerContent) { 30 if (empty($innerContent)) { 31 continue; 32 } 33 26 34 $innerContent = do_shortcode($innerContent); 27 35 } … … 33 41 }, 10, 1); 34 42 43 35 44 }}} 36 45