Forum:Category.Description

Version: - string  

Summary

Returns the description of the forum category.

Settings

The value is based on the forum category description.

Examples

Outputting the template tag

@GetString("Forum:Category.Description")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Forum:Category.Description"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Forum:Category.Description"); }

Outputting the template tag

<!--@Forum:Category.Description-->

Check if string has a value

<!--@If Defined(@Forum:Category.Description)--> Let's output this tag here: <strong><!--@Forum:Category.Description--></strong> <!--@EndIf(@Forum:Category.Description)-->