How to output most recent post from blog
I've downloaded and installed the blog module from here:
https://github.com/daylightstudio/FUEL-CMS-Blog-ModuleHowever, I'm finding it impossible to output the most recent blog post title, date and link on the homepage of my site. I've tried to follow the docs but everything I try just dumps the blogs complete array and kills the page.
This is the code I'm using:
$blogpost = $this->fuel->blog->get_recent_posts(1, array('author_id' => 1)); print_r($blogpost)
What am I doing wrong?
Thanks
Comments
$CI =& get_instance();
$blogpost = $CI->fuel->blog->get_recent_posts(1, array('author_id' => 1));
foreach($blogpost as $post) :
echo $post->title;
endforeach;