• Is there anyway to include the custom field content in the RSS Feed of each single post of a WordPress blog?

Viewing 1 replies (of 1 total)
  • 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');
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: More Fields] Include Fields in RSS Feeds?’ is closed to new replies.