Forums
(@bartrand)
15 years, 6 months ago
Add the following to functions.php:
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'); ?>