Tag¶
Tags are not mandatory but make it easier to structure news records.
Add a tag¶
Tags can be added in the News administration or List module.
Properties¶
-
Title
¶ -
- Required
- true
Title of the tag.
-
Hide a tag.
-
SEO: <title>-Tag
¶ -
Can be used to set a special <title>-Tag for category pages. This must be enabled in the template:
<f:if condition="{tags.0.title}"> <n:titleTag> <f:format.htmlentitiesDecode>{tags.0.title}</f:format.htmlentitiesDecode> </n:titleTag> </f:if>
Copied!
-
SEO: Meta-Description
¶ -
Can be used to set a special meta description for category pages. This must be enabled in the template:
<f:if condition="{tags.0.description}"> <n:metaTag name="description" content="{tags.0.description -> f:format.stripTags()}" /> </f:if>
Copied!
-
SEO: Headline
¶ -
Can be used to set a special headline for category pages, e.g. for H1 tag This must be enabled in the template:
<f:if condition="{tags.0.headline}"> <f:then> <h1>{tags.0.headline}</h1> </f:then> <f:else> <h1>News Category</h1> </f:else> </f:if>
Copied!
-
SEO: Text
¶ -
Can be used to add additional content text for category pages This must be enabled in the template:
<f:if condition="{tags.0.text}"> <f:format.html>{tags.0.text}</f:format.html> </f:if>
Copied!