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