Skip to content

Instantly share code, notes, and snippets.

@nerrad
Forked from mjangda/autosaver.js
Created July 4, 2013 13:23
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 nerrad/5927689 to your computer and use it in GitHub Desktop.
Save nerrad/5927689 to your computer and use it in GitHub Desktop.
// Must be in an external file or loaded at the end of wp_footer()
jQuery(document).ajaxSend(function(e, x, a) {
var awesome = 1;
a.data += '&' + jQuery.param( {is_awesome: awesome} );
});
<?php
add_action('save_post', 'autosave_save_custom');
function autosave_save_custom( $post ) {
if( wp_is_post_autosave($post) && isset( $_POST['is_awesome'] ) ) {
$is_awesome = intval( $_POST['is_awesome'] );
$post_id = $post->ID;
update_metadata( $post->post_type, $post_id, 'is_awesome', $is_awesome );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment