Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #58366, comment 23


Ignore:
Timestamp:
05/22/2023 04:14:55 PM (3 years ago)
Author:
ryansantschi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #58366, comment 23

    initial v1  
    11Having this issue as well. Not sure if this goes without saying, but any HTML comments (<!--) also are put in paragraph tags.
     2
     3In my particular use case this is providing a temporary work around:
     4
     5
     6{{{
     7// Replace one or more consecutive whitespace characters with a single space
     8$shortcode_content = preg_replace('/\s+/', ' ', $shortcode_content);
     9// Remove HTML comments from the content
     10$shortcode_content = preg_replace('/<!--(.|\s)*?-->/', '', $shortcode_content);
     11}}}