Support

Account

Home Forums ACF PRO Edit Yoast Fields – Front End Form Reply To: Edit Yoast Fields – Front End Form

  • This should do it

    
    function my_acf_update_value_meta($value, $post_id, $field) {
      update_post_meta($post_id, '_yoast_wpseo_metadesc', $value);
      return $value;
    }
    add_filter('acf/update_value/key=field_57205386becf2', 'my_acf_update_value_meta', 10, 3);