Is there anyway to include the custom field content in the RSS Feed of each single post of a WordPress blog?
Is there anyway to include the custom field content in the RSS Feed of each single post of a WordPress blog?
Add the following to functions.php:
<?php
function append_field_to_feed($content) {
$content = $content.$citation . get_meta(myfield);
return $content;
}
add_filter('the_content_feed', 'append_field_to_feed');
?>This topic has been closed to new replies.