Posts: Wordpress
How to write basic wordpress plugin
August 24, 2017
 
How to disable wordpress automatic updates
August 6, 2017
In wp-config.php add the following lines:
define('WP_AUTO_UPDATE_CORE', false);
define('AUTOMATIC_UPDATER_DISABLED', true);
 
How to disable wordpress revisions
June 29, 2017
In wp-config.php add the following line:
define('WP_POST_REVISIONS', false );
 
How to disable wordpress autosave
June 25, 2017
Add the following line to wp_config.php file:
define('AUTOSAVE_INTERVAL', 60*60*60*24*365);