references:joomla.framework:document:jdocumentfeed-additemaddItem
Adds a JFeedItem to the feed. Syntaxvoid addItem ( &$item )
ExamplesExample $feedDoc =& JDocument::getInstance( 'feed' ); $item = new JFeedItem(); $item->title = 'Item Title'; $item->link = 'http://example.com/feed.php'; $item->description = 'About the Item'; $item->date = mktime(); $item->author = 'Joe Blow'; $item->category = 'General Category'; $feedDoc->addItem( $item ); $feedDoc->render(); Discussion |


