Skip to content

Instantly share code, notes, and snippets.

@wpsmith
Last active November 11, 2016 22:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpsmith/4444552 to your computer and use it in GitHub Desktop.
Save wpsmith/4444552 to your computer and use it in GitHub Desktop.
PHP: Disable initial autosave/autodraft
<?php
add_action( 'admin_enqueue_scripts', 'wps_cpt_admin_enqueue_scripts' );
/**
* Disable initial autosave/autodraft
*/
function wps_cpt_admin_enqueue_scripts() {
if ( 'cpt' == get_post_type() )
wp_dequeue_script( 'autosave' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment