Forums

More Fields
Include Fields in RSS Feeds? (2 posts)

  1. kelp
    Member
    Posted 1 year ago #

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

  2. bartrand
    Member
    Posted 1 year ago #

    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');
    ?>

Topic Closed

This topic has been closed to new replies.

About this Plugin

About this Topic