Replies: 0
relevanssi_fix_entities attempts to escape excerpt html by doing a replaced on allowed tags such as <p>.
The problem is that such type of code may not work if the tag is <p class="myclass">
as it only matches literally <p>
– it is not a regex pattern match