Why do I get the same excerpt for all items in my RSS feed?
After Lots of Research and Testing, I got the answer. the_excerpt and other custom function are not working because there is no any content tag On feed xml format. You just need to add this code instead of the_excerpt <p><?php echo esc_html( $item->get_description() ); ?></p> More you can Visit https://wordpress.org/support/topic-tag/get_description/ The Full code may you … Read more