Has anyone ever seen this problem? Whenever a user edits an existing post, it suddenly gets saved in the database as the “htmlspecialchars” (or “htmlentities”) version of itself. So, from now on, whenever the post is viewed, the HTML code becomes visible in the post.
For example, if the post is:
<p>Hello <strong>world</strong></p>
Then, after editing, it will be saved in the database as:
<p>Hello <strong>world</strong></p> This only happens when editing an existing post. When creating one from scratch, the HTML code saves fine and the post appears correctly. I have SimplePress 5.7.4 on WP 4.7.3, and I do use the TinyMCE plugin (also latest version, 3.3.4). The database itself uses charset utf8mb4_unicode_ci. What is causing this? Any help appreciated.