certainlyakey
10/15/2017 - 5:05 PM

Save ACF custom field as post title in Wordpress

Save ACF custom field as post title (Wordpress)

function update_post_title_from_customfield( $post_id ) {

  $saved_post = array();
  $saved_post['ID'] = $post_id;

  $field = get_field('date_date_day');

  if (get_post_type() == 'date' && $field) {
    $saved_post['post_title'] = $field;
  } 

  wp_update_post( $saved_post );
}
   
add_action('acf/save_post', 'update_post_title_from_customfield', 20);