Forum:LastThread.Title
Version: - stringSummary
Returns title of the last thread.
Settings
The value is based on the Heading field for the forum thread.
Examples
Outputting the template tag
@GetString("Forum:LastThread.Title")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Forum:LastThread.Title"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Forum:LastThread.Title");
}
Outputting the template tag
<!--@Forum:LastThread.Title-->
Check if string has a value
<!--@If Defined(@Forum:LastThread.Title)-->
Let's output this tag here: <strong><!--@Forum:LastThread.Title--></strong>
<!--@EndIf(@Forum:LastThread.Title)-->