0
votes
1answer
49 views

Custom RSS feed - blank page

I've read all the articles about creating a custom RSS feed, but haven't had any luck - always results in a blank page. To make things simple, here is the code I'm using - with the link being ...
-3
votes
1answer
89 views

Add Custom postmeta Fields to Custom Post Type RSS in wordpress

function add_custom_fields_to_rss() { if(get_post_type() == 'my_custom_post_type' && $my_meta_value = get_post_meta(get_the_ID(), 'my_meta_key', true)) { ?> ...