Search the Community
Showing results for tags 'feed'.
-
i have following code using php its work but i dont know how to implementation into whmcs display in client area or whmcs footer (link rss code only for example ) <?php $rss = simplexml_load_file('http://feeds.bbci.co.uk/news/england/rss.xml'); $feed = 0; foreach ($rss->channel->item as $item) { if($feed<4){ echo '<div><a href="'. $item->link .'" title="'.$item->title.'">' . $item->title . "</a></div>"; } $feed++; } ?> anyone please help hook or some thing mention @brian! 😁
- 5 replies
-
- feed wordpress
- feed
-
(and 1 more)
Tagged with:
-
Suddenly Domain feed not working . Show MIME type error. How to fix it.
-
anyone help please how to display this code into footer.tpl whmcs this code work in single php, show 4 resent post from wordpress feed <?php $rss = simplexml_load_file('mydomain.com/feed/'); $i = 0; foreach ($rss->channel->item as $item) { if($i<4){ echo '<div><a href="' . $item->link . '" title="' . $item->title . '">' . $item->title . "</a></div>"; } $i++; } ?> thanks before
