You can use filters in your functions.php file in your theme directory to add content into the RSS feed. Here’s some sample code I was using on a site to add a description, video embed, and show notes to the feed which were all custom fields:
function wpbeginner_postrss($content) {
global $wp_query;
$postid = $wp_query->post->ID;
$description = get_post_meta($postid, 'Description', true);
$video = get_post_meta($postid, 'Video Embed Code', true);
$shownotes = get_post_meta($postid, 'Show Notes', true);
if(is_feed()) {
if($description !== '') {
$content = $description . " " . $video . "<h2>Show Notes</h2>" . $shownotes;
}
else {
$content = $content;
}
}
return $content;
}
add_filter('the_excerpt_rss', 'wpbeginner_postrss');
add_filter('the_content', 'wpbeginner_postrss');