Custom meta boxes in RSS feed 时间:2013-07-31 作者:Jacob 我有一些自定义的元字段,我想显示在RSS提要中。现在他们没有,因为他们不是the_content 我想是吧。如果有人有任何让这一切发生的秘诀,请让我知道!谢谢 1 个回复 最合适的回答,由SO网友:gmazzap 整理而成 Try, not tested, add_filter(\'the_content_feed\',\'add_my_fields_to_rss\'); function add_my_fields_to_rss($content) { global $post; $mymeta = get_post_meta($post->ID, \'my_meta\', true); $content .= $mymeta; return $content; } 结束 文章导航