Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I can't get my blog feed to work. It's been a couple of days since I added it, but it has not updated since. The "last polled" time was when I added it.

I added a CodeProject category in my WordPress and assigned articles to it. I even installed the CodeProject plugin, but nothing. Shouldn't the blog be polled once a day?? I'm not sure if I configured it correctly, but if the feed is not being polled, how am I to know it works?

Thanks.
Posted
Comments
Rohit Shrivastava 23-Oct-12 17:29pm    
please make sure you are providing the atom feed url, not the blog public url. If that is already the case please provide the atom feed url in your post.

Yes, it is the RSS feed. http://www.ventsy.com/?feed=rss2[^]
 
Share this answer
 
It’s wordpress normal RSS feed :
http://scriptsell.net/?feed=rss
or
http://scriptsell.net/feed/[^]

Categories and Tags


You can also provide feeds to only specific categories or tags on your site by adding the following to the end of the link:

http://scriptsell.net/?cat=42&feed=rss2
or
http://scriptsell.net/?tag=tagname&feed=rss2
or
http://scriptsell.net/tag/tagname/feed
Or
http://scriptsell.net/?cat=42,43&feed=rss2
Or
http://scriptsell.net/?tag=tag1,tag2&feed=rss2
OR
http://scriptsell.net /category/cat1,cat2/feed
OR
http://scriptsell.net/category/cat1/category/cat2/feed


For Custom Post


Used this to include all post from all post types:
function myfeed_request($qv) {
if (isset($qv['feed']))
$qv['post_type'] = get_post_types();
return $qv;
}
add_filter('request', 'myfeed_request');
and your rss url will be like as bellow

http://shop.scriptsell.net/feed/?post_type=book[^]
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900