Viewing 2 replies - 1 through 2 (of 2 total)
  • just a single page? Or to include pages in general?

    // ADDS POST TYPES TO RSS FEED
    function myfeed_request($qv) {
    	if (isset($qv['feed']) && !isset($qv['post_type']))
    		$qv['post_type'] = array('ve_products', 'post');
    	return $qv;
    }
    add_filter('request', 'myfeed_request');

    in functions.php allows you to determin what is in an rss feed.

    see the array with ve_products and post? That allows normal posts, and my custom post type of ve_products. You could swap out my CPT for page

    Thread Starter jerryr

    (@jerryr)

    Thank you – how would you do a single post – say the page is named ‘testpage’ ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Rss feed of a single page’ is closed to new replies.