...
Name of the setting to return.
Examples
...
| Code Block | ||
|---|---|---|
| ||
// Prints the value of the setting foo
echo setting('foo');
// Setting used in an IF statement if it holds boolean values
if (setting('foo')) {
}
// Used in HTML templates
{{ setting('foo') }} |