Title: [Plugin: More Fields] Include Fields in RSS Feeds?
Last modified: August 19, 2016

---

# [Plugin: More Fields] Include Fields in RSS Feeds?

 *  [kelp](https://wordpress.org/support/users/kelp/)
 * (@kelp)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/plugin-more-fields-include-fields-in-rss-feeds/)
 * 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)

 *  [bartrand](https://wordpress.org/support/users/bartrand/)
 * (@bartrand)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-more-fields-include-fields-in-rss-feeds/#post-1595508)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/more-fields.svg)
 * [More Fields](https://wordpress.org/plugins/more-fields/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/more-fields/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/more-fields/)
 * [Active Topics](https://wordpress.org/support/plugin/more-fields/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/more-fields/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/more-fields/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [bartrand](https://wordpress.org/support/users/bartrand/)
 * Last activity: [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-more-fields-include-fields-in-rss-feeds/#post-1595508)
 * Status: not resolved