How can I stop my custom posts saving with the title 'Auto Draft'? I've tried the code below to save my Book_Title custom field as the post-title but to no success:
if(isset($_POST['Book_Title'])){
update_post_meta($post_id,'post_title', sanitize_text_field($_POST['Book_Title']));
} else {
delete_post_meta( $post_id, 'Book_Title' );
}