Skip to content

Instantly share code, notes, and snippets.

@wakasann
Created November 9, 2016 01:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wakasann/331e5307ee8b8ffd1f2a4ea981ffa906 to your computer and use it in GitHub Desktop.
Save wakasann/331e5307ee8b8ffd1f2a4ea981ffa906 to your computer and use it in GitHub Desktop.
disable wordpress autosave
/**
* @link http://wordpress.stackexchange.com/questions/5584/possible-to-turn-off-autosave-for-single-custom-post-type
*/
add_action( 'admin_enqueue_scripts', 'ezapp_module_enqueue_scripts' );
function ezapp_module_enqueue_scripts() {
if ( 'ezapp_module' == 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