problems in the transition to WordPress 5.x
-
Hello. I use the old version of wordpress, i.e. when you switch to WordPress 5.x, your plugin stops working normally.
1. After editing the article, the formatting of the code constantly disappears, i.e.
int main () { int a = 0; if (a == 0) { cout << "hello"; } else { cout << "world"; } }
Turns into:
int main () { int a = 0; if (a == 0) { cout << "hello"; } else { cout << "world"; } }
or even into something like:
int main () {int a = 0; if (a == 0) {cout << "hello";} else {cout << "world";}}
I do not know why it depends.
2. part of the characters immediately replaced. For example,
<
on<
Those. in the visual editor I will see what is written above, and in the source code will be
cout & lt; < ; “hello”
instead
cout << "hello"
3. Part of the code disappears altogether
eg
#include <iostream> int main () { }
Converted to
#include int main () { }
And the saddest thing is that the source code of the page is modified, i.e. if there is no backup, then it is impossible to restore what was.
It seems to me that this is not a complete list of problems.
- This topic was modified 5 years, 9 months ago by .
- This topic was modified 5 years, 9 months ago by .
- This topic was modified 5 years, 9 months ago by .
- This topic was modified 5 years, 9 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘problems in the transition to WordPress 5.x’ is closed to new replies.