Hi Jack, I have been doing some troubleshooting of my own and in my custom Post Type I automatically add a title to the post using this function as we do not want users type their own. I commented it out and it worked. Any idea what the conflict would be? As always thanks for your support
function hp_alert_titles($data, $postarr){
if($data[‘post_type’] == ‘hp_mitchell_area’){ $data[‘post_title’] = ‘Mitchell Area’; }
return $data;
}
add_filter(‘wp_insert_post_data’, ‘hp_alert_titles’, 10, 2);