17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1377 Views |
-
Blog Entry on Homepage

28 May 2008 at 8:50am
Hi,
Does anyone know how to make the most recent entry from the blog module display on the homepage. I had done this with the new section before, but can't seem to figure out how to do it with the blog. Any ideas?
Thanks!
-
Re: Blog Entry on Homepage

28 May 2008 at 10:01am Last edited: 28 May 2008 10:01am
Adding this function to your HomePage_Controller should work...
function getLatestPost() {
return DataObject::get_one('BlogEntry', '', false, 'LastEdited DESC');
}Then you can call $LatestPost.Title and so forth in the template.
-
Re: Blog Entry on Homepage

28 May 2008 at 10:43am Last edited: 28 May 2008 10:43am
Worked. Right on! Thanks, man
| 1377 Views | ||
|
Page:
1
|
Go to Top |


