Hey, it works fine on my site and am on the latest WP version.
You may want to run a bit of debugging.
WP debug is off by default, so you need to put your site on maintenance mode first then enable WP-debug in your wp-config file. Make sure you have these:
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Disable display of errors and warnings on the webpage itself so people browsing do not see those errors
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
See what errors are being generated in /wp-config/debug.log and go from there.
Another alternative is to check your browser console for any errors when you generate the faulty page or post.
Even another way is to deactivate your theme and plugins except php-everywhere then reactivate one at a time to see which one breaks php_everywhere. Once identified, you address the culprit, maybe needs an update or maybe it runs deprecated functions or similar.
Good luck.
-
This reply was modified 2 years, 10 months ago by Flankerator.
-
This reply was modified 2 years, 10 months ago by Flankerator.
-
This reply was modified 2 years, 10 months ago by Flankerator.
-
This reply was modified 2 years, 10 months ago by Flankerator.
-
This reply was modified 2 years, 10 months ago by Flankerator.
-
This reply was modified 2 years, 10 months ago by Flankerator.