|
View previous topic :: View next topic
|
| Author |
Message |
Toups tyranically banal

Joined: 03 Dec 2006 Location: Ebon Keep
|
Posted: Tue May 29, 2007 6:21 am Post subject: help me fix our RSS feed |
|
|
so for some reason the subject line doesn't show up on RSS readers for the SB feed.
this is the code of the xml file:
| Code: |
<php>
<rss>
<channel>
<title>Select Button</title>
<link>http://selectbutton.net/</link>
<description></description>
<language>en</language>
<?php
foreach($posts as $post){
$url = "http://forums.selectbutton.net/viewtopic.php?t=".$post['id'];
$bare = trim(strip_tags($post['body']));
echo <<<XML
<item>
<title>{$post['title']}</title>
<link>$url</link>
<comments>$url</comments>
<pubDate>{$post['time']}</pubDate>
<dc>{$post['poster']['username']}</dc>
<guid>
$url
</guid>
<description>
$bare
</description>
<content><CDATA></content>
</item>
XML;
}
?>
</channel>
</rss>
|
how do I change it so that you can see the subject line? _________________
 |
|
| Filter / Back to top |
|
 |
falsedan

Joined: 13 Dec 2006 Location: San Francisco
|
Posted: Tue May 29, 2007 7:15 am |
|
|
without seeing the entire RSS PHP file, I'm going to make a total guess and say:
change
| Code: |
| <title>{$post['title']}</title> |
to
| Code: |
| <title>{$post['subject']}</title> |
_________________
 |
|
| Filter / Back to top |
|
 |
Toups tyranically banal

Joined: 03 Dec 2006 Location: Ebon Keep
|
Posted: Tue May 29, 2007 7:18 am |
|
|
oops, that IS the php file, not xml.
let me try that though. _________________
 |
|
| Filter / Back to top |
|
 |
Toups tyranically banal

Joined: 03 Dec 2006 Location: Ebon Keep
|
Posted: Tue May 29, 2007 7:24 am |
|
|
hey it seems to have worked! _________________
 |
|
| Filter / Back to top |
|
 |
falsedan

Joined: 13 Dec 2006 Location: San Francisco
|
Posted: Tue May 29, 2007 7:30 am |
|
|
WOO!
I have been hacking half-documented PHP for the last 4 months, so I am getting pretty good at guessing! _________________
 |
|
| Filter / Back to top |
|
 |
Toups tyranically banal

Joined: 03 Dec 2006 Location: Ebon Keep
|
Posted: Tue May 29, 2007 7:34 am |
|
|
falsedan you are a true man.
I also owe thanks to a mysterious lurker who IMed me giving me pretty much the same advice.
Your help is appreciated, mysterious stranger! _________________
 |
|
| Filter / Back to top |
|
 |
|