CG feed read not working
-
Before I explain the technical problems, let me explain what I want to do first. I set up wordpress without problems. I also have a website I am creating. I want to display my wordpress blog entries on the website I created. The only way I can think to do something like this is to read the rss file.
As a result, I tried using carp and that didn’t work. After that I tried CG Feedread and that didn’t work either. For each, I could read feed from other rss feeds, but not my own blog. It is getting extremely frustrating. The code I am using for feedread:
in the head section:
<?php require(‘https://[mydomain].com/blog/wp-blog-header.php’); ?>where I want the feed to display:
<?php
$feedUrl = “https://www.[mydomain].com/blog/wp-rss2.php”;
$feedOut = getSomeFeed($feedUrl, 4, false, “feed-realfeed”, ”, 36, false);
if ($feedOut)
echo $feedOut;
?>I can access the rss feed when I type it in the browser so I know it is there. Does anyone have a clue ?
- The topic ‘CG feed read not working’ is closed to new replies.