Nov
4th
Thu
4th
Drop this line in your active theme’s functions.php file:
add_post_type_support( ‘page’, ‘excerpt’ );
command-line
SELECT u.ID, u.user_login
FROM wp_users u, wp_usermeta um
WHERE u.ID = um.user_id
AND um.meta_key = ‘wp_capabilities’
AND um.meta_value LIKE ‘%administrator%’;
To disable WordPress autosaving function, simply open your functions.php file and paste the following function:
function disableAutoSave(){
wp_deregister_script('autosave');
}
add_action( 'wp_print_scripts', 'disableAutoSave' );
That’s all. Once you saved the file, WordPress will never autosave a post. To enable autosaving again, simply delete this code.