My posts on my site are getting into auto-draft mode when I try to publish it.
So far, I have tried the following: 1. Change the theme. 2. Disable all plugins 3. Disabled widgets using functions.php.
Not sure what is causing this. Can you please help?
Thanks!
My posts on my site are getting into auto-draft mode when I try to publish it.
So far, I have tried the following: 1. Change the theme. 2. Disable all plugins 3. Disabled widgets using functions.php.
Not sure what is causing this. Can you please help?
Thanks!
Can you try the following in your wp-config.php
define( 'AUTOSAVE_INTERVAL', 3600 ); // autosave 1x per hour
define( 'WP_POST_REVISIONS', false ); // no revisions
What this would do disable auto-save and post-revisions. Try with that, if it works could be your then it could be your internet or hosting conflicts.