Title: 【Technical Tip】Fix WordPress New Page JS Code Failure Caused by Markup Markdown Plugin in One Move
Content: Today, I opened my blog and found that the poetry on the "Recite Poetry" page wasn't loading—it was stuck on "Selecting...". My first thought was whether the poetry API had broken down, but after testing it locally, it worked fine.
Then, I tried creating a new page and inserting the code, but it still didn't work—the JavaScript code wasn't executing. After some troubleshooting, I discovered that the Markup Markdown editor plugin was preventing the JS code from running.
However, I couldn't simply remove the plugin, as it would mess up the formatting of my articles. The temporary solution I found was to place the JS code in the footer section while keeping the HTML code in place.
HTML Code:
```sh
Recite Two Lines of Poetry
Selecting...
```
JS Code:
```sh
// Insert your JavaScript code here
```
Now it's working properly again.
Feel free to check out the [Recite Poetry](https://www.muyuanhuck.cn/learn/) page on my blog.
Comments NOTHING