1 gerri Apr 15, 2007 02:23
3 gerri Apr 15, 2007 22:00
A single post that contains the feed content that will change daily. That is what I'm trying (unsuccessfully) to do.
I'm sorry if I'm asking the wrong way..
Thanks,
Gerri
4 yabba Apr 18, 2007 10:44
Probably the easiest way to do this is in your _main.php just replace your normal $Item->content() line with something like this :
if( $Item->ID == 99 ) // change 99 to the posts real ID
{
// your feed stuff goes here
}
else
{
$Item->content();
}
¥
5 gerri Apr 18, 2007 11:30
I will try this and see how it goes. I'm quite the n00b but I'll see if I can manage this.
Thanks for your help
I'm a tad lost about what you actually want.
Do you want a single post that contains a feed that changes daily or are you wanting to make a post that gets permanently filled with the result of the feed ( ie/ remains the same content ) ?
¥