I have the following line in THEME_preprocess_node
$vars['node']->field_breadcrumb['und'][0]['value'] = theme('breadcrumb', array('breadcrumb'=>$breadcrumb));
In Display Suite, I added a preprocess field. The machine name of the field is field_breadcrumb,
The field appears in the Manage Display settings, but its contents don't appear when the display is rendered.
Got it. In the preprocess I needed just to put the data in $vars['field_breadcrumb'].
----
I have the following line in THEME_preprocess_node
$vars['node']->field_breadcrumb['und'][0]['value'] = theme('breadcrumb', array('breadcrumb'=>$breadcrumb));
In Display Suite, I added a preprocess field. The machine name of the field is field_breadcrumb,
The field appears in the Manage Display settings, but its contents don't appear when the display is rendered.