Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter foxpress.design

    (@foxjones)

    i’ve realized my client is also using custom post types and custom fields, pulling in from wp-rss-aggregator.

    i’ve added this code to the functions.php to get the custom post types to show up on the rss feed:

    function myfeed_request($qv) {
    	if (isset($qv['feed']))
    		$qv['post_type'] = get_post_types();
    	return $qv;
    }
    add_filter('request', 'myfeed_request');

    that makes the custom post types appear, but their image tags show up in the feed as…

    <wprss_ftp_enclosure:thumbnail> and <wprss_ftp_enclosure_link>

    instead of <enclosure:thumbnail> and <enclosure_link>

    Hi,

    Since you are using one of our premium add-ons, please create a premium support ticket from here

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to customize RSS feed output’ is closed to new replies.