An error has occurred, which probably means the feed is down. Try again later.
-
I’m trying to create a RSS feed for my blog. I have written the following code in my functions.php on my child theme and calling it using a shortcode
function myRSS_Func(){
include_once(ABSPATH . WPINC . ‘/rss.php’);
wp_rss(‘https://www.clickflickreview.com/category/reviews/feed/’, 3);
}
add_shortcode( ‘myRSS’, ‘myRSS_Func’ );I get the following error on the test page I tried it. “An error has occurred, which probably means the feed is down. Try again later.”
Is there an alternate solution or what could be wrong?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘An error has occurred, which probably means the feed is down. Try again later.’ is closed to new replies.