Tagged Questions
0
votes
0answers
13 views
Why '/post_type/feed/' differs from '/feed/?post_type=XX'?
I was trying to put the thumbnails for my custom post types in their respective feed using the the_content_feed and the_excerpt_rss filters. The problem was when I reached for the feed using the ...
0
votes
1answer
420 views
Can't Display Featured Image in RSS Feed
I'm currently working on a test website on my local server using WordPress version 3.4.2. I've tried various different solutions. Some have included installing various plugins, such as WP RSS Images ...
1
vote
1answer
167 views
Getting images to show up in RSS Reader
I'm trying to get posts' featured images to show up in RSS Reader.
When I look at the raw RSS XML I can see the images are successfully being written into <description> and also under ...
0
votes
1answer
864 views
How to add post featured image to RSS item tag?
I am able to add a post featured image to the RSS feed like so:
function insertThumbnailRSS($content) {
global $post;
if(has_post_thumbnail($post->ID)){
$content = ...
1
vote
1answer
388 views
Grab YouTube Thumbnail AFTER Post?
I'm using a feed to receive special YouTube feeds organized via playlists. Unfortunately, the URL is not included in the description field, but I can get the videos to display by including the source ...
1
vote
3answers
1k views
How to grab first image attached to post and display in RSS feed?
I've seen the tutorials on how to grab the first image and display it in a post, and those on grabbing the post_thumbnail and using that in the RSS feed, but does anybody know how to grab the first ...