How to STOP JetPack Contact Form showing in RSS
-
I have a website which I am using
this code for my RSS feed:
function myfeed_request($qv) {
if (isset($qv[‘feed’]))
$qv[‘post_type’] = get_post_types();
return $qv;
}
add_filter(‘request’, ‘myfeed_request’);I need to filter out the JetPack Contact Form from my RSS feed so that when someone registers using the form it will not show up in my feed.
How do I do that?
- The topic ‘How to STOP JetPack Contact Form showing in RSS’ is closed to new replies.