Skip to content

Instantly share code, notes, and snippets.

@danpastori
Created January 20, 2015 16:15
Show Gist options
  • Save danpastori/ee6546b7f45a2d7088ae to your computer and use it in GitHub Desktop.
Save danpastori/ee6546b7f45a2d7088ae to your computer and use it in GitHub Desktop.
Custom field save
function page_save( $post_id ){
if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
if( isset( $_POST['pre-content-text'] ) ){
update_post_meta( $post_id, 'pre-content-text', $_POST['pre-content-text'] );
}
if( isset( $_POST['post-content-text'] ) ){
update_post_meta( $post_id, 'post-content-text', $_POST['post-content-text'] );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment