Issue with RSS feed
-
Hello,
I have opened an issue on Webnus Ticksy approximately 2 month ago but but I still don’t see the bug fixed.
I have two issues with the RSS feed : https://votreappli1.fr/sgdo/agenda/feed/
First, I created different events in MEC with :
– a title
– a description
– a date for the event (start/end)
– a featured image
– no extracts that resume the post.
The first issue is that in the xml file of the feed, the content of the last event present in
“<description><![CDATA[…”
is copied in the two others“<description><![CDATA[…”
of the others events.If I place an extract in all the events, there is no issue, there will be differents extracts.
The second issue is approximately the same, the featured image of the last event is copied in the others events in the RSS xml.
I activated the display of the featured images via
function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = ‘<div>’ . get_the_post_thumbnail( $post->ID, ‘large’, array( ‘style’ => ‘margin-bottom: 15px;’) ) . ‘</div>’ . $content;
}
return $content;
}add_filter(‘the_excerpt_rss’, ‘featuredtoRSS’);
add_filter(‘the_content_feed’, ‘featuredtoRSS’);I am not the only one to have this bug but since 4 or 5 new plugin update still no news of this issue…
Thx for your help.
Jay
The page I need help with: [log in to see the link]
The topic ‘Issue with RSS feed’ is closed to new replies.