1770 Posts in 495 Topics by 531 members
Blog Module
SilverStripe Forums » Blog Module » Get latest blog entries from BlogTree sections
Discuss the Blog Module.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 1061 Views |
-
Get latest blog entries from BlogTree sections

13 October 2010 at 1:31am
Hello,
I have subclassed my website into small sections (BlogHolders) and big sections which include other blogHolders (BlogTree). I have an horizontal accordion showcase on homepage to show the latest four news entries, and each entry is from a specific blog holder or blog tree.
This is the structure of my website:
1. Home
2. Politics => BogHolder
3. Economie => BlogHolder
4. Culture => BlogTree
a. Local =>BlogHolder
b. Regional =>BlogHolder
c. Nationa =>BlogHolder5. Sports => BlogTree
a. Local =>BlogHolder
b. Regional =>BlogHolder
c. Nationa =>BlogHolder
...I tried something like the following to show the latest entry from a BlogTree but it doesn't work:
function LatestNews($title) {
$news = DataObject::get_one('BlogTree', "URLSegment = '$title'");
return ($news) ? DataObject::get("BlogEntry", "ParentID = $news->ID", "Date DESC", "", 1) : false;
}Any help on how can I get news from this structure?
thanks
| 1061 Views | ||
|
Page:
1
|
Go to Top |

