I'm trying to add an item field so that I can use views_rss for Facebook Instant Articles. So far I have been able to make everything feed correctly except for that addition of a item. The bad thing is that is probably the most important thing being passed to Facebook as it contains the majority of your article content.
I've added the following to views_rss/modules/vies_rss_core/views_rss_core.module
$elements['content:encoded'] = array(
'description' => t('An entity encoded element for HTML content'),
'preprocess functions' => array('views_rss_rewrite_relative_paths'),
'help' => 'http://www.feedforall.com/content.htm',
);
It shows an additional item field within the settings admin, but it is being split up into its own section.

Does anyone know how I can get the item to group with the rest? I thought maybe making a regular item without the colon may help and then pre-process the page to add it back in?
Comments