jeremy

Anonymous
I'm trying to create a news portal using geeklog. I have the news block working great. However, I would like to make the center of the page news from the various feeds. Any suggestions on how to accomplish this?

Status: offline

Tony

Site Admin
Admin
Registered: 12/17/01
Posts: 405
Create a custom function, something like CUST_getNews($rdf_url) in lib-custom.php. The basic logic would be:
Text Formatted Code

function CUST_getNews($rdf_url);

   // Here you part the feed using the GL function(s) in
   // lib-common.php
    $retval = COM_startBlock($feedTitle);

    $retval .= {parsed RDF feed};

    $retval = COM_endBlock();

    return $retval;

}
 
Then call that from index.php.

---
The reason people blame things on previous generations is that there's only one other choice.


The reason people blame things on previous generations is that there's only one other choice.