Quantcast
Channel: Wordpress Auto Draft disabling - Stack Overflow
Browsing latest articles
Browse All 6 View Live

Answer by IWS for Wordpress Auto Draft disabling

For guys who use WordPress 5.0+ version with Gutenberg Editor, the below code snippet works to disable auto drafting/saving/** * Disables auto saving feature for Gutenberg Editor (set interval by...

View Article



Answer by Yahya for Wordpress Auto Draft disabling

Open wp-config.php located in your WordPress root directory and add following code:define('WP_POST_REVISIONS', false );before of require_once ABSPATH . 'wp-settings.php'; or and top of the file.

View Article

Answer by T.Todua for Wordpress Auto Draft disabling

I think disabling it is not good (for example, when you parallely try to publish 2 posts, then there may be problems). So, instead, of disabling:Method 1)disable them slightly (without...

View Article

Answer by its_me for Wordpress Auto Draft disabling

I notice that you are asking about disabling Auto-Drafts and NOT Auto-Save.You cannot disable Auto-save, but you can achieve a similar affect by setting a long interval, for example:define(...

View Article

Answer by kaiser for Wordpress Auto Draft disabling

A) Set it in your wp-config.php file. Else it won't work.define( 'AUTOSAVE_INTERVAL', 3600 ); // autosave 1x per hourdefine( 'WP_POST_REVISIONS', false ); // no revisionsdefine( 'DISABLE_WP_CRON', true...

View Article


Wordpress Auto Draft disabling

I am using Wordpress v.3.3.1 With Multisite management on.I am trying to disable the auto draft function, but it seems that I have tried everythig.What I have tried:define('WP_POST_REVISIONS',...

View Article
Browsing latest articles
Browse All 6 View Live




Latest Images