Magnolia 5.7 reached extended end of life on May 31, 2022. Support for this branch is limited, see End-of-life policy. Please note that to cover the extra maintenance effort, this EEoL period is a paid extension in the life of the branch. Customers who opt for the extended maintenance will need a new license key to run future versions of Magnolia 5.7. If you have any questions or to subscribe to the extended maintenance, please get in touch with your local contact at Magnolia.
The Content Tags module makes content tagging possible. The module contains UI classes to enable tagging on content apps and provides
tagfn
templating functions to search for tagged content.
Module structure
artifactID | |
---|---|
| Parent reactor. |
| Provides the API and the
tagfn
templating functions. |
| Provides UI components (such as actions and the tag-field) and the content-tags app. |
Installing
The module is bundled with the magnolia-enterprise-pro-webapp
. All the other webapps and bundles inherit the module from this webapp (see preconfigured Magnolia bundles and webapps).
<version/>
in the dependency.<dependency> <groupId>info.magnolia.contenttags</groupId> <artifactId>magnolia-content-tags-ui</artifactId> </dependency>
It is sufficient to add magnolia-content-tags-ui
only to the pom file of your webapp and let let Maven handle the dependency to magnolia-content-tags-core
.
<dependency> <groupId>info.magnolia.contenttags</groupId> <artifactId>magnolia-content-tags-core</artifactId> </dependency>
Further reading
- Learn how to enable content tags for a content app.
- Get familiar with the
tagfn
templating functions.