<?php
return array( 'title' => 'Feed title',
              'link'  => array( array( 'href' => 'Feed link' ) ),
              'description' => 'Feed description',
			  'item' => array( array( 'title' => 'Item title 1',
                                      'link' => 'Item link 1',
                                      'description' => 'Item description 1',
                                      'Content' => array( array( 'encoded' => 'Content encoded 1' ) ) ),
			                   array( 'title' => 'Item title 2',
                                      'link' => 'Item link 2',
                                      'description' => 'Item description 2',
                                      'Content' => array( array( 'encoded' => 'Content encoded 2' ) )  ) ),
            );
?>
