1770 Posts in 495 Topics by 531 members
Blog Module
SilverStripe Forums » Blog Module » Displaying selected content
Discuss the Blog Module.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 236 Views |
-
Displaying selected content

27 September 2012 at 8:28am
Could someone direct me on how onto alter the following code so that it ignores latest posts with a particular tag. I want all posts marked with 'current' to not be displayed in the post stream I have on another page.
php-----
function LatestBlogPosts($num=3) {
$news = DataObject::get_one("BlogHolder");
return ($news) ? DataObject::get("BlogEntry", "ParentID = $news->ID", "Date DESC", "", $num) : false;
}thanks
| 236 Views | ||
|
Page:
1
|
Go to Top |

