Opened 9 years ago
Last modified 5 years ago
#33834 new defect (bug)
wpautop treats html comments as content
Reported by: | opajaap | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.3 |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
This php code:
$str = '<div>My div1</div><!-- comment --><div>My div2</div>'; echo $str.'<br/>'.wpautop($str);
Produces this output as seen in the page source:
<div>My div1</div><!-- comment --><div>My div2</div><br/><div>My div1</div> <p><!-- comment --> <div>My div2</div>
I.e. unbalanced
<p>
and wrong layout.
Change History (3)
Note: See
TracTickets for help on using
tickets.
There were some changes in #33645 regarding wpautop and HTML comments.
Can you confirm this still breaks when running trunk / a nightly build?